Endpoint Playground
Test Crawlora's Costco product reviews 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/costco/product/<id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Costco product id, e.g. from a search result's id field |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "4000354684",
"total_count": 67,
"average_rating": 4.5,
"reviews": [
{
"id": "243309305",
"title": "Flawless Delivery and Great Refrigerator!",
"text": "Delivery was perfect! They were 15 min early...",
"rating": 5,
"author": "delisa80",
"recommended": true,
"submitted_at": "2025-07-15T16:34:05.000+00:00"
}
]
}
}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 a Costco product's reviews: title, text, rating, author, and recommendation for each. Public data sourced from Costco's own review platform.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "4000354684",
"total_count": 67,
"average_rating": 4.5,
"reviews": [
{
"id": "243309305",
"title": "Flawless Delivery and Great Refrigerator!",
"text": "Delivery was perfect! They were 15 min early...",
"rating": 5,
"author": "delisa80",
"recommended": true,
"submitted_at": "2025-07-15T16:34:05.000+00:00"
}
]
}
}curl "https://api.crawlora.net/api/v1/costco/product/<id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"