Endpoint Playground
Test Crawlora's List Zappos brands 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/brands" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Case-insensitive substring filter on name or slug | |
| page | integer | No | Result page, 1-based, defaults to 1 | |
| page_size | integer | No | Results per page, defaults to 100, max 1000 |
{
"code": 200,
"data": {
"brands": [
{
"id": "WgLNGeICAQs",
"name": "Adidas Outdoor",
"slug": "adidas-outdoor",
"url": "https://www.zappos.com/adidas-outdoor/WgLNGeICAQs.zso"
}
],
"has_next": true,
"page": 1,
"page_size": 100,
"total": 440
},
"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 page of Zappos brands discovered from Zappos's own published sitemap, closing the discovery gap where a brand id otherwise has to be found elsewhere. Pair a returned id or url with GET /zappos/brand to browse that brand's product grid. name is derived from the brand's own URL slug (title-cased), not an authoritative site-provided label. q, if set, case-insensitively filters to brands whose derived name or slug contains it.
{
"code": 200,
"data": {
"brands": [
{
"id": "WgLNGeICAQs",
"name": "Adidas Outdoor",
"slug": "adidas-outdoor",
"url": "https://www.zappos.com/adidas-outdoor/WgLNGeICAQs.zso"
}
],
"has_next": true,
"page": 1,
"page_size": 100,
"total": 440
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/zappos/brands" \
-H "x-api-key: $CRAWLORA_API_KEY"