Endpoint Playground
Test Crawlora's Search Zappos products 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/search?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| term | string | Yes | Search keyword | |
| page | integer | No | Result page, 1-based, defaults to 1 |
{
"code": 200,
"data": {
"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",
"term": "sample",
"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.
Searches Zappos's product catalog by keyword, with real page-based pagination. Returns normalized products with brand, pricing, sale status, rating, and review count, plus filterable facets (gender, department, shoe size, and more) each with a live result count and its own drill-down URL. Requesting a page beyond the available results returns a normal, empty result rather than an error.
{
"code": 200,
"data": {
"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",
"term": "sample",
"total_count": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/zappos/search?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"