Endpoint Playground
Test Crawlora's Get a Balenciaga product API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/balenciaga/product?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Product URL from a Balenciaga listing |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "A007IH2ACT21000",
"sku": "814444397",
"name": "WOMEN'S HOURGLASS AVENUE TOP HANDLE BAG SMALL IN BLACK",
"description": "Hourglass Avenue Top Handle Bag Small in black shiny box calfskin with aged-gold hardware.",
"color": "Black",
"material": "Calfskin",
"dimensions": [
"Length: 24 cm | 9.4\"",
"Height: 18 cm | 7.1\""
],
"product_care": "Wipe with a soft, dry cloth. Keep away from heat.",
"currency": "USD",
"in_stock": true,
"url": "https://www.balenciaga.com/en-en/hourglass-avenue-top-handle-bag-small-black-A007IH2ACT21000.html"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns structured product detail from Balenciaga's product page, including schema.org name/SKU/price/availability, images, color variants, and visible product details. url must be a product URL returned by balenciaga-category or balenciaga-search.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "A007IH2ACT21000",
"sku": "814444397",
"name": "WOMEN'S HOURGLASS AVENUE TOP HANDLE BAG SMALL IN BLACK",
"description": "Hourglass Avenue Top Handle Bag Small in black shiny box calfskin with aged-gold hardware.",
"color": "Black",
"material": "Calfskin",
"dimensions": [
"Length: 24 cm | 9.4\"",
"Height: 18 cm | 7.1\""
],
"product_care": "Wipe with a soft, dry cloth. Keep away from heat.",
"currency": "USD",
"in_stock": true,
"url": "https://www.balenciaga.com/en-en/hourglass-avenue-top-handle-bag-small-black-A007IH2ACT21000.html"
}
}curl "https://api.crawlora.net/api/v1/balenciaga/product?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"