Endpoint Playground
Test Crawlora's Costco categories 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/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | No | Search text to scope the returned categories to, e.g. \ |
{
"code": 200,
"msg": "OK",
"data": {
"query": "refrigerator",
"categories": [
{
"slug": "compact-refrigerators",
"name": "Compact Refrigerators",
"count": 8
},
{
"slug": "french-door-refrigerators",
"name": "French Door Refrigerators",
"count": 54
}
]
}
}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 Costco category slugs and product counts relevant to an optional search term, each slug usable directly with GET /costco/search's category filter. Public data sourced from Costco's own search backend.
{
"code": 200,
"msg": "OK",
"data": {
"query": "refrigerator",
"categories": [
{
"slug": "compact-refrigerators",
"name": "Compact Refrigerators",
"count": 8
},
{
"slug": "french-door-refrigerators",
"name": "French Door Refrigerators",
"count": 54
}
]
}
}curl "https://api.crawlora.net/api/v1/costco/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"