Endpoint Playground
Test Crawlora's Costco product availability 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>/availability?postal_code=<postal_code>&state=<state>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Costco product id | |
| postal_code | string | Yes | US destination ZIP code | |
| state | string | Yes | US destination two-letter state code |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "1942114",
"availability": "INSTOCK",
"available_for_sale": true,
"fulfilled_by": "LG",
"supplier_available_date": "2026-08-07T00:00:00",
"estimated_delivery_date": "2026-08-17T00: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 Costco product's stock and estimated-delivery status for a delivery destination. Public data sourced from Costco's own fulfillment backend.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "1942114",
"availability": "INSTOCK",
"available_for_sale": true,
"fulfilled_by": "LG",
"supplier_available_date": "2026-08-07T00:00:00",
"estimated_delivery_date": "2026-08-17T00:00:00"
}
}curl "https://api.crawlora.net/api/v1/costco/product/<id>/availability?postal_code=<postal_code>&state=<state>" \
-H "x-api-key: $CRAWLORA_API_KEY"