Endpoint Playground
Test Crawlora's Get a Chewy product's 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/chewy/product?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric id from a chewy.com PDP URL |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.chewy.com/api/pdp/graphql",
"fetched_at": "2026-08-20T10:00:00Z",
"product": {
"entry_id": "185468",
"part_number": "158732",
"parent_entry_id": "185466",
"parent_part_number": "158730",
"name": "Frisco Lion Mane Dog & Cat Costume, Medium",
"description": "Your pet will be the king of the trick-or-treat jungle with this impressive lion's mane from Frisco by Chewy.",
"brand": "Frisco",
"brand_url": "https://www.chewy.com/brands/frisco-6767",
"slug": "frisco-lion-mane-dog-cat-costume",
"url": "https://www.chewy.com/frisco-lion-mane-dog-cat-costume/dp/185468",
"currency_code": "USD",
"price": 15.99,
"in_stock": true,
"images": [
"https://image.chewy.com/catalog/general/images/frisco-lion-mane/img-570111.jpg"
],
"icons": [
{
"name": "Polyester",
"image_url": "https://image.chewy.com/icons/polyester.svg"
}
],
"breadcrumbs": [
{
"id": "288",
"name": "Dog Supplies",
"url": "https://www.chewy.com/b/dog-288"
}
],
"rating": 4.0677,
"rating_count": 473,
"rating_breakdown": [
{
"stars": 5,
"count": 301
},
{
"stars": 1,
"count": 56
}
],
"questions_count": 1,
"questions": [
{
"id": "UXVlc3Rpb246MQ==",
"text": "Does this run true to size?",
"answers": [
{
"id": "QW5zd2VyOjE=",
"text": "Yes, it fits true to size.",
"submitted_by": "srigaud",
"submitted_at": "2026-01-05T00:00:00.000Z",
"is_staff": true,
"helpful_count": 3
}
]
}
],
"reviews": [
{
"id": "UmV2aWV3OjE3NzkyODA3",
"title": "Great costume!",
"text": "Purchased this lion head for my dog Remington and he loves it.",
"rating": 5,
"submitted_by": "Susan",
"submitted_at": "2025-08-17T17:39:31.000Z",
"helpful_count": 10
}
]
}
}
}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 Chewy product's full normalized detail: name, brand, description, images, price, stock, rating and its star-count breakdown, category breadcrumbs, customer questions and answers, and customer reviews. id is the numeric id from a chewy.com PDP URL, e.g. 185468 from https://www.chewy.com/frisco-lion-mane-dog-cat-costume/dp/185468 -- also the same value a chewy_category response's products[].part_number field carries for that product's own default variant.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.chewy.com/api/pdp/graphql",
"fetched_at": "2026-08-20T10:00:00Z",
"product": {
"entry_id": "185468",
"part_number": "158732",
"parent_entry_id": "185466",
"parent_part_number": "158730",
"name": "Frisco Lion Mane Dog & Cat Costume, Medium",
"description": "Your pet will be the king of the trick-or-treat jungle with this impressive lion's mane from Frisco by Chewy.",
"brand": "Frisco",
"brand_url": "https://www.chewy.com/brands/frisco-6767",
"slug": "frisco-lion-mane-dog-cat-costume",
"url": "https://www.chewy.com/frisco-lion-mane-dog-cat-costume/dp/185468",
"currency_code": "USD",
"price": 15.99,
"in_stock": true,
"images": [
"https://image.chewy.com/catalog/general/images/frisco-lion-mane/img-570111.jpg"
],
"icons": [
{
"name": "Polyester",
"image_url": "https://image.chewy.com/icons/polyester.svg"
}
],
"breadcrumbs": [
{
"id": "288",
"name": "Dog Supplies",
"url": "https://www.chewy.com/b/dog-288"
}
],
"rating": 4.0677,
"rating_count": 473,
"rating_breakdown": [
{
"stars": 5,
"count": 301
},
{
"stars": 1,
"count": 56
}
],
"questions_count": 1,
"questions": [
{
"id": "UXVlc3Rpb246MQ==",
"text": "Does this run true to size?",
"answers": [
{
"id": "QW5zd2VyOjE=",
"text": "Yes, it fits true to size.",
"submitted_by": "srigaud",
"submitted_at": "2026-01-05T00:00:00.000Z",
"is_staff": true,
"helpful_count": 3
}
]
}
],
"reviews": [
{
"id": "UmV2aWV3OjE3NzkyODA3",
"title": "Great costume!",
"text": "Purchased this lion head for my dog Remington and he loves it.",
"rating": 5,
"submitted_by": "Susan",
"submitted_at": "2025-08-17T17:39:31.000Z",
"helpful_count": 10
}
]
}
}
}curl "https://api.crawlora.net/api/v1/chewy/product?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"