Endpoint Playground
Test Crawlora's Get a Zappos 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/zappos/product/<productId>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| productId (path) | string | Yes | Zappos product id, from a search result's product_id field | |
| colorId | string | No | Zappos color id selecting a specific color variant |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "9984297",
"color_id": "1112488",
"brand_name": "HOKA",
"product_name": "Clifton 10",
"description": "A trusted trainer for daily maintenance miles, the Hoka One One® Clifton 10 delivers a revitalized underfoot experience.",
"category": "sneakers & athletic shoes",
"breadcrumbs": [
"shoes",
"sneakers & athletic shoes",
"HOKA"
],
"color": "Vanilla/Birch",
"currency_code": "USD",
"price": "114.99",
"original_price": "155.00",
"in_stock": true,
"images": [
"https://m.media-amazon.com/images/I/71zzmruQmAL._SX700_.jpg",
"https://m.media-amazon.com/images/I/71Et3HTxBXL._SX700_.jpg"
],
"rating": 4,
"rating_count": 1546,
"rating_breakdown": {
"1": 5,
"2": 3,
"3": 7,
"4": 10,
"5": 76
},
"featured_reviews": [
{
"id": "18383268",
"author": "Lori, Zappos Customer",
"date": "May 8, 2025 3:21:47 PM",
"body": "I have been getting a size 9 in the Hoka Cliftons since the Clifton 6. This time my toe comes all the way to the end of the shoe and the toe box is smaller.",
"overall_rating": 1,
"comfort_rating": 1,
"look_rating": 1,
"verified_purchase": false,
"up_votes": 152
},
{
"id": "18360853",
"author": "Anonymous, Zappos Customer",
"date": "Apr 24, 2025 5:12:45 AM",
"body": "This shoe runs smaller than my previous Cliftons. They are much more narrow and that is sad.",
"overall_rating": 3,
"comfort_rating": 3,
"look_rating": 3,
"verified_purchase": false,
"up_votes": 67
}
],
"size_fit": {
"percentages": {
"Felt true to size": 80.40435,
"Felt a half size smaller than marked": 4.0435457
},
"most_common_answer": "Felt true to size",
"most_common_percentage": 80
},
"width_fit": {
"percentages": {
"Felt true to width": 86.08,
"Felt wider than marked": 4.96
},
"most_common_answer": "Felt true to width",
"most_common_percentage": 86
},
"color_variants": [
{
"color_id": "151",
"color_name": "Black/White",
"price": "$99.83",
"original_price": "$155.00",
"percent_off": "36%",
"url": "https://www.zappos.com/product/9984297/color/151"
},
{
"color_id": "1112488",
"color_name": "Vanilla/Birch",
"price": "$114.99",
"original_price": "$155.00",
"percent_off": "26%",
"url": "https://www.zappos.com/product/9984297/color/1112488"
}
],
"url": "https://www.zappos.com/p/womens-hoka-clifton-10/product/9984297",
"source_url": "https://www.zappos.com/product/9984297/color/1112488",
"fetched_at": "2026-08-10T10:00:00Z"
}
}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 Zappos product's full detail: name, brand, description, category, breadcrumbs, pricing, images, aggregate rating with a 1-5 star breakdown, up to two featured customer reviews with real author/date/body/rating, reviewer-submitted fit feedback for size/width/arch (each response option's own share of respondents plus the most common answer), and every sibling color variant with its own price. productId is taken from a search result's product_id field or a product page's URL. colorId is optional and selects a specific color variant; an omitted or invalid colorId still resolves the base product using a real color variant rather than failing. An unrecognized productId returns 404.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "9984297",
"color_id": "1112488",
"brand_name": "HOKA",
"product_name": "Clifton 10",
"description": "A trusted trainer for daily maintenance miles, the Hoka One One® Clifton 10 delivers a revitalized underfoot experience.",
"category": "sneakers & athletic shoes",
"breadcrumbs": [
"shoes",
"sneakers & athletic shoes",
"HOKA"
],
"color": "Vanilla/Birch",
"currency_code": "USD",
"price": "114.99",
"original_price": "155.00",
"in_stock": true,
"images": [
"https://m.media-amazon.com/images/I/71zzmruQmAL._SX700_.jpg",
"https://m.media-amazon.com/images/I/71Et3HTxBXL._SX700_.jpg"
],
"rating": 4,
"rating_count": 1546,
"rating_breakdown": {
"1": 5,
"2": 3,
"3": 7,
"4": 10,
"5": 76
},
"featured_reviews": [
{
"id": "18383268",
"author": "Lori, Zappos Customer",
"date": "May 8, 2025 3:21:47 PM",
"body": "I have been getting a size 9 in the Hoka Cliftons since the Clifton 6. This time my toe comes all the way to the end of the shoe and the toe box is smaller.",
"overall_rating": 1,
"comfort_rating": 1,
"look_rating": 1,
"verified_purchase": false,
"up_votes": 152
},
{
"id": "18360853",
"author": "Anonymous, Zappos Customer",
"date": "Apr 24, 2025 5:12:45 AM",
"body": "This shoe runs smaller than my previous Cliftons. They are much more narrow and that is sad.",
"overall_rating": 3,
"comfort_rating": 3,
"look_rating": 3,
"verified_purchase": false,
"up_votes": 67
}
],
"size_fit": {
"percentages": {
"Felt true to size": 80.40435,
"Felt a half size smaller than marked": 4.0435457
},
"most_common_answer": "Felt true to size",
"most_common_percentage": 80
},
"width_fit": {
"percentages": {
"Felt true to width": 86.08,
"Felt wider than marked": 4.96
},
"most_common_answer": "Felt true to width",
"most_common_percentage": 86
},
"color_variants": [
{
"color_id": "151",
"color_name": "Black/White",
"price": "$99.83",
"original_price": "$155.00",
"percent_off": "36%",
"url": "https://www.zappos.com/product/9984297/color/151"
},
{
"color_id": "1112488",
"color_name": "Vanilla/Birch",
"price": "$114.99",
"original_price": "$155.00",
"percent_off": "26%",
"url": "https://www.zappos.com/product/9984297/color/1112488"
}
],
"url": "https://www.zappos.com/p/womens-hoka-clifton-10/product/9984297",
"source_url": "https://www.zappos.com/product/9984297/color/1112488",
"fetched_at": "2026-08-10T10:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/zappos/product/<productId>" \
-H "x-api-key: $CRAWLORA_API_KEY"