Chewy API endpoint
Use Crawlora's List Chewy's brand directory API to extract supported public Chewy data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/chewy/brandsReturns one page of Chewy's full brand directory -- roughly 7,600 brands -- with each brand's id, name, Chewy's own written description, image, parent-catalog group, and its child brands where a brand umbrellas others (Purina lists 27). This is the whole catalog of brands, unlike chewy_facets, which only reports the brands present in one category's listing. Pass name to look up a single brand by exact name, case-insensitive; it is an exact match upstream, not a search, so "Purina" matches while "purina pro" does not. To filter products by a brand, pass the brand's NAME to chewy_category or chewy_search as filter=brand_facet:<name> -- facet_id is the join key onto chewy_facets' own option ids and is not accepted by the filter parameter. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| page | integer | No | Page number, 1-based (default 1). | ||
| limit | integer | No | Brands per page, 1 to 500 (default 100). | ||
| name | string | No | Return only the brand with this exact name, case-insensitive. Exact match, not a search. | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/chewy/brands?page=1&limit=10" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- **To filter products by brand, pass the brand's `name`** to `/chewy/category` or `/chewy/search` as `filter=brand_facet:<name>` -- e.g. `filter=brand_facet:ACANA` returns 33 products on `group_id=294`. - `facet_id` is **not** accepted by that filter. It is the join key onto `/chewy/facets`' own `options[].id` for the same brand (ACANA is `id` 74 here and `facet_id` 507405, which is exactly the option id `/chewy/facets` reports). Passing `filter=brand_facet:507405` returns nothing. - `child_brand_ids` lists the ids of sub-brands under an umbrella brand. - `short_description` is omitted when it merely repeats the brand name, which upstream does for most entries. - Roughly a fifth of brands carry a `long_description`; the rest are name-only catalog entries. - A `name` that matches nothing, or a page past the end, returns an empty `brands` array rather than an error. - An out-of-range `limit` or `page` returns a `400`. Example response: ```json { "code": 200, "msg": "OK", "data": { "page": 1, "page_size": 100, "count": 100, "brands": [ { "id": "74", "name": "ACANA", "facet_id": "507405", "long_description": "ACANA pet foods are made with fresh regional ingredients…", "updated_at": "2026-09-06T06:30:47.112Z" } ], "source_url": "https://www.chewy.com/api/search/brands?catalogId=1004&count=100&from=0", "fetched_at": "2026-09-07T06:00:00Z" } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"page_size": 100,
"count": 100,
"brands": [
{
"id": "74",
"name": "ACANA",
"facet_id": "507405",
"long_description": "ACANA pet foods are made with fresh regional ingredients…",
"updated_at": "2026-09-06T06:30:47.112Z"
}
],
"source_url": "https://www.chewy.com/api/search/brands?catalogId=1004&count=100&from=0",
"fetched_at": "2026-09-07T06:00:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/chewy.brandsResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | chewy.BrandsResponse | No | ||||
| data.brands | array | No | ||||
| data.brands[].catalog_group_id | string | No | ||||
| data.brands[].child_brand_ids | array | No | ||||
| data.brands[].facet_id | string | No | 507405 | FacetID correlates this brand with chewy_facets: it equals that endpoint's options[].id for the same brand (ACANA is id 74 here and facet_id 507405, which is exactly what chewy_facets reports as its option id). It is NOT the value the filter param takes. chewy_category/chewy_search consume the brand NAME -- filter=brand_facet:ACANA returns 33 products on group 294, while filter=brand_facet:507405 returns none. Use Name for filtering and FacetID only to join against chewy_facets. | ||
| data.brands[].id | string | No | 74 | |||
| data.brands[].image_url | string | No | ||||
| data.brands[].long_description | string | No | ||||
| data.brands[].name | string | No | ACANA | |||
| data.brands[].short_description | string | No | ||||
| data.brands[].updated_at | string | No | ||||
| data.count | integer | No | ||||
| data.fetched_at | string | No | ||||
| data.page | integer | No | 1 | |||
| data.page_size | integer | No | 100 | |||
| data.source_url | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/chewy/brands?page=1&limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms