Endpoint Playground
Test Crawlora's Browse a Zappos brand 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/zappos/brand?brand=<brand>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| brand | string | Yes | Zappos brand URL, slug/id.zso path, or opaque id | |
| page | integer | No | Result page, 1-based, defaults to 1 |
{
"code": 200,
"data": {
"brand": "sample",
"brand_id": "sample-id",
"count": 1,
"facets": [
{
"field": "txAttrFacet_Gender",
"multi_select": true,
"name": "Gender",
"values": [
{
"count": 69,
"selected": true,
"url": "https://example.com/resource",
"value": "Women"
}
]
}
],
"fetched_at": "sample",
"has_more": true,
"page": 1,
"page_count": 1,
"page_size": 1,
"products": [
{
"brand_name": "sample",
"color": "sample",
"color_id": "sample-id",
"gender": [
"sample"
],
"image_url": "https://example.com/resource",
"is_new": true,
"on_hand": 1,
"on_sale": true,
"original_price": "sample",
"percent_off": "sample",
"price": "sample",
"product_id": "sample-id",
"product_name": "sample",
"product_type": "sample",
"rating": 1.23,
"review_count": 1,
"style_color": "sample",
"style_id": "sample-id",
"url": "https://example.com/resource"
}
],
"source_url": "https://example.com/resource",
"total_count": 1
},
"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 a Zappos brand page's product grid, with real page-based pagination and per-field filter facets. brand accepts a full brand URL copied from zappos.com, the "slug/id.zso" path from that URL, or just the opaque id from a GET /zappos/brands result's own id field. An unrecognized brand returns 404.
{
"code": 200,
"data": {
"brand": "sample",
"brand_id": "sample-id",
"count": 1,
"facets": [
{
"field": "txAttrFacet_Gender",
"multi_select": true,
"name": "Gender",
"values": [
{
"count": 69,
"selected": true,
"url": "https://example.com/resource",
"value": "Women"
}
]
}
],
"fetched_at": "sample",
"has_more": true,
"page": 1,
"page_count": 1,
"page_size": 1,
"products": [
{
"brand_name": "sample",
"color": "sample",
"color_id": "sample-id",
"gender": [
"sample"
],
"image_url": "https://example.com/resource",
"is_new": true,
"on_hand": 1,
"on_sale": true,
"original_price": "sample",
"percent_off": "sample",
"price": "sample",
"product_id": "sample-id",
"product_name": "sample",
"product_type": "sample",
"rating": 1.23,
"review_count": 1,
"style_color": "sample",
"style_id": "sample-id",
"url": "https://example.com/resource"
}
],
"source_url": "https://example.com/resource",
"total_count": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/zappos/brand?brand=<brand>" \
-H "x-api-key: $CRAWLORA_API_KEY"