Endpoint Playground
Test Crawlora's Costco search 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/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | No | Search text | |
| category | string | No | Costco category slug, e.g. the last path segment of a category page URL |
{
"code": 200,
"msg": "OK",
"data": {
"query": "refrigerator",
"total_count": 381,
"products": [
{
"id": "4000181299",
"url": "https://www.costco.com/p/-/mora-18-cu-ft-top-freezer-refrigerator/4000181299",
"title": "Mora 18 cu. ft. Top Freezer Refrigerator",
"brand": "Mora",
"model": "MRT180N6AWD",
"image_url": "https://gdx-assets.costco.com/adobe/assets/urn:aaid:aem:9913a059-4644-4e07-a049-7f72f2e28b5c/as/1731564-847__1.avif",
"categories": [
"Appliances",
"Appliances > Refrigerators",
"Appliances > Refrigerators > Top Freezer Refrigerators"
],
"rating": 4.2566,
"rating_count": 491
}
]
}
}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 public Costco products matching a text query and/or a category slug: title, brand, model, image, and rating for each result. Public data sourced from Costco's own search backend.
{
"code": 200,
"msg": "OK",
"data": {
"query": "refrigerator",
"total_count": 381,
"products": [
{
"id": "4000181299",
"url": "https://www.costco.com/p/-/mora-18-cu-ft-top-freezer-refrigerator/4000181299",
"title": "Mora 18 cu. ft. Top Freezer Refrigerator",
"brand": "Mora",
"model": "MRT180N6AWD",
"image_url": "https://gdx-assets.costco.com/adobe/assets/urn:aaid:aem:9913a059-4644-4e07-a049-7f72f2e28b5c/as/1731564-847__1.avif",
"categories": [
"Appliances",
"Appliances > Refrigerators",
"Appliances > Refrigerators > Top Freezer Refrigerators"
],
"rating": 4.2566,
"rating_count": 491
}
]
}
}curl "https://api.crawlora.net/api/v1/costco/search" \
-H "x-api-key: $CRAWLORA_API_KEY"