Endpoint Playground
Test Crawlora's Costco product 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>" \
-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 or a product page URL's \ |
{
"code": 200,
"msg": "OK",
"data": {
"id": "4000103922",
"title": "LG 26 cu. ft. Smart Mirror InstaView Counter-Depth MAX French Door Refrigerator with Four Types of Ice",
"manufacturer": "LG ELECTRONICS USA INC",
"image_url": "https://gdx-assets.costco.com/adobe/assets/urn:aaid:aem:941ed14a-3b6f-48af-a0b3-a354e55869a2/as/4000103922-847__1.avif",
"price": 1399.99,
"buyable": true,
"rating": 4.44,
"rating_count": 477
}
}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 Costco product's detail: title, description, manufacturer, image, price, stock status, and rating. Public data sourced from Costco's own product backend.
{
"code": 200,
"msg": "OK",
"data": {
"id": "4000103922",
"title": "LG 26 cu. ft. Smart Mirror InstaView Counter-Depth MAX French Door Refrigerator with Four Types of Ice",
"manufacturer": "LG ELECTRONICS USA INC",
"image_url": "https://gdx-assets.costco.com/adobe/assets/urn:aaid:aem:941ed14a-3b6f-48af-a0b3-a354e55869a2/as/4000103922-847__1.avif",
"price": 1399.99,
"buyable": true,
"rating": 4.44,
"rating_count": 477
}
}curl "https://api.crawlora.net/api/v1/costco/product/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"