Endpoint Playground
Test Crawlora's Chewy Search Suggestions 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/chewy/suggest?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| term | string | Yes | Partial search text |
{
"code": 200,
"msg": "OK",
"data": {
"term": "salmon dog",
"suggestions": [
{
"term": "salmon dog food"
},
{
"term": "salmon dog treats"
},
{
"term": "salmon dog food dry"
}
],
"articles": [
{
"title": "What Is the Best Dog Food for Small Dogs?",
"url": "https://www.chewy.com/education/dog/food-and-nutrition/what-is-the-best-dog-food-for-small-dogs",
"thumbnail_url": "https://pet-health-content-media.chewy.com/thumb.jpg"
}
],
"source_url": "https://www.chewy.com/suggestion/v2/suggest?term=salmon+dog&types=standardCategory&types=brandCategory&types=noncategoryBrand&types=manual&count=10&newCustomer=true&isAuthenticated=false",
"fetched_at": "2026-08-20T10:00:00Z"
}
}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 Chewy's own search-box typeahead result for a partial query term: search-term suggestions (some resolving directly to a category/brand browse URL via their own url field) plus a handful of educational-content article suggestions. term is a partial query, e.g. "salmon dog" or "blue buff".
{
"code": 200,
"msg": "OK",
"data": {
"term": "salmon dog",
"suggestions": [
{
"term": "salmon dog food"
},
{
"term": "salmon dog treats"
},
{
"term": "salmon dog food dry"
}
],
"articles": [
{
"title": "What Is the Best Dog Food for Small Dogs?",
"url": "https://www.chewy.com/education/dog/food-and-nutrition/what-is-the-best-dog-food-for-small-dogs",
"thumbnail_url": "https://pet-health-content-media.chewy.com/thumb.jpg"
}
],
"source_url": "https://www.chewy.com/suggestion/v2/suggest?term=salmon+dog&types=standardCategory&types=brandCategory&types=noncategoryBrand&types=manual&count=10&newCustomer=true&isAuthenticated=false",
"fetched_at": "2026-08-20T10:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/chewy/suggest?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"