Piloterr

Chewy Products Finder

Find Chewy product URLs by product name, ID, or any combination of filters to use in product detail and rendering API calls.

GET
/v2/finder/chewy-products

Authorization

ApiKeyAuth
x-api-key<token>

Your API key. Include it in the x-api-key header for every request.

In: header

Query Parameters

search?string

Free-text search across product titles and IDs. Optional if at least one filter is provided.

Example:

dog food
query?stringDeprecated

Legacy alias of search. Kept for backward compatibility.

id?string

Filter by one or several internal product IDs. Provide a comma-separated list to match multiple IDs.

Example:

312253,312254
domain?string

Filter by website domain. Comma-separated values are accepted.

Example:

com
filter?string

Raw filter expression for advanced filtering. Combined with the shorthand filters using AND.

Example:

domain = "com" AND title CONTAINS "puppy"
limit?number

Maximum number of results to return. Default is 10, maximum is 100.

Default"10"
offset?number

Number of results to skip for pagination. Default is 0.

Default"0"
sort?string

Sort the results. Provide one or several attributes with :asc or :desc, comma-separated.

Example:

title:asc
fields?string

Comma-separated list of fields to return. Defaults to all fields.

Example:

id,title,url
count?boolean

When true, the response is wrapped in an object containing the total estimated count plus the hits: { count, hits }. When false or omitted, returns the raw hits array.

Example:

true
Default"false"

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://api.piloterr.com/v2/finder/chewy-products"

[
  {
    "id": "312253",
    "url": "https://www.chewy.com/blue-buffalo-life-protection-formula/dp/312253",
    "title": "Blue Buffalo Life Protection Formula Adult Chicken & Brown Rice Recipe Dry Dog Food",
    "domain": "com"
  },
  {
    "id": "133035",
    "url": "https://www.chewy.com/wellness-complete-health-natural-dry/dp/133035",
    "title": "Wellness Complete Health Natural Dry Dog Food, Salmon & Sweet Potato Recipe",
    "domain": "com"
  }
]

{
  "error": "Bad Request"
}
{
  "error": "Invalid API Key"
}
{
  "error": "Payment required"
}
{
  "error": "Rate limit exceeded for the API key: quota monthly"
}
{
  "error": "Internal Error"
}