Endpoint Playground
Test Crawlora's Get a Zara product's full detail 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/zara/product/<productId>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| productId (path) | string | Yes | Numeric Zara product id, from a search/category result's url field |
{
"code": 200,
"data": {
"colors": [
{
"availability": "sample",
"description": "sample",
"id": "sample-id",
"images": [
"sample"
],
"name": "sample",
"price": 1.23,
"sizes": [
{
"availability": "sample",
"id": 1,
"name": "sample",
"price": 1.23,
"sku": 1
}
]
}
],
"composition": [
{
"components": [
{
"material": "sample",
"percentage": "sample"
}
],
"description": "sample"
}
],
"family_name": "sample",
"fetched_at": "sample",
"name": "sample",
"product_id": "sample-id",
"reference": "sample",
"section_name": "sample",
"source_url": "https://example.com/resource",
"subfamily_name": "sample",
"url": "https://example.com/resource"
},
"msg": "OK"
}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 one Zara product's full detail: every purchasable color variant with its real marketing description, per-size stock, and full image gallery -- richer than the per-product summaries returned by zara-category-products and zara-search. productId is a numeric id, taken from a search/category result's url field (the digits after "-p" in the product-detail URL). An unrecognized productId returns 404.
{
"code": 200,
"data": {
"colors": [
{
"availability": "sample",
"description": "sample",
"id": "sample-id",
"images": [
"sample"
],
"name": "sample",
"price": 1.23,
"sizes": [
{
"availability": "sample",
"id": 1,
"name": "sample",
"price": 1.23,
"sku": 1
}
]
}
],
"composition": [
{
"components": [
{
"material": "sample",
"percentage": "sample"
}
],
"description": "sample"
}
],
"family_name": "sample",
"fetched_at": "sample",
"name": "sample",
"product_id": "sample-id",
"reference": "sample",
"section_name": "sample",
"source_url": "https://example.com/resource",
"subfamily_name": "sample",
"url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/zara/product/<productId>" \
-H "x-api-key: $CRAWLORA_API_KEY"