Endpoint Playground
Test Crawlora's Get Balenciaga product variations 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/variants?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Balenciaga product URL or Product-Variation URL |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "814444397",
"style_code": "A007IH2ACT21000",
"name": "Women's Hourglass Avenue Top Handle Bag Small in Black",
"availability": [
"In Stock"
],
"in_stock": true,
"attributes": [
{
"id": "color",
"display_name": "Color",
"selected_value": "Black",
"values": [
{
"id": "1000",
"label": "Black",
"variation_id": "814444397",
"selectable": true,
"sellable_online": true
}
]
},
{
"id": "size",
"display_name": "Size",
"selected_value": "U",
"values": [
{
"id": "U",
"label": "U",
"selectable": true
}
]
}
]
}
}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 Balenciaga's live color/size variation matrix for a product, including variation ids, selection/sellability flags, care text, availability, and related product ids. url may be a product URL or a Product-Variation URL from balenciaga-product's colors[].url.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "814444397",
"style_code": "A007IH2ACT21000",
"name": "Women's Hourglass Avenue Top Handle Bag Small in Black",
"availability": [
"In Stock"
],
"in_stock": true,
"attributes": [
{
"id": "color",
"display_name": "Color",
"selected_value": "Black",
"values": [
{
"id": "1000",
"label": "Black",
"variation_id": "814444397",
"selectable": true,
"sellable_online": true
}
]
},
{
"id": "size",
"display_name": "Size",
"selected_value": "U",
"values": [
{
"id": "U",
"label": "U",
"selectable": true
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/balenciaga/product/variants?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"