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,
"data": {
"brand_name": "sample",
"breadcrumbs": [
"sample"
],
"category": "sample",
"color": "sample",
"color_id": "sample-id",
"color_variants": [
{
"color_id": "sample-id",
"color_name": "sample",
"original_price": "sample",
"percent_off": "sample",
"price": "sample",
"url": "https://example.com/resource"
}
],
"currency_code": "sample",
"description": "sample",
"featured_reviews": [
{
"author": "sample",
"body": "sample",
"comfort_rating": 1.23,
"date": "sample",
"id": "sample-id",
"look_rating": 1,
"overall_rating": 1,
"up_votes": 1,
"verified_purchase": true
}
],
"fetched_at": "sample",
"images": [
"sample"
],
"in_stock": true,
"original_price": "sample",
"price": "sample",
"product_id": "sample-id",
"product_name": "sample",
"rating": 1.23,
"rating_breakdown": {},
"rating_count": 1,
"source_url": "https://example.com/resource",
"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 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, 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,
"data": {
"brand_name": "sample",
"breadcrumbs": [
"sample"
],
"category": "sample",
"color": "sample",
"color_id": "sample-id",
"color_variants": [
{
"color_id": "sample-id",
"color_name": "sample",
"original_price": "sample",
"percent_off": "sample",
"price": "sample",
"url": "https://example.com/resource"
}
],
"currency_code": "sample",
"description": "sample",
"featured_reviews": [
{
"author": "sample",
"body": "sample",
"comfort_rating": 1.23,
"date": "sample",
"id": "sample-id",
"look_rating": 1,
"overall_rating": 1,
"up_votes": 1,
"verified_purchase": true
}
],
"fetched_at": "sample",
"images": [
"sample"
],
"in_stock": true,
"original_price": "sample",
"price": "sample",
"product_id": "sample-id",
"product_name": "sample",
"rating": 1.23,
"rating_breakdown": {},
"rating_count": 1,
"source_url": "https://example.com/resource",
"url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/zappos/product/<productId>" \
-H "x-api-key: $CRAWLORA_API_KEY"