Endpoint Playground
Test Crawlora's Instacart trending 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/instacart/trending?postal_code=<postal_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| postal_code | string | Yes | US postal/ZIP code to search near |
{
"code": 200,
"msg": "OK",
"data": {
"postal_code": "94105",
"terms": [
{
"term": "kit kat",
"thumbnail_url": "https://www.instacart.com/assets/generic_items/autosuggestions/placeholder.png"
},
{
"term": "wine",
"thumbnail_url": "https://d2lnr5mha7bycj.cloudfront.net/product-image/file/thumb_a23cbed9-9122-4850-8d98-453fe6283dad.png"
}
]
}
}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 Instacart's own popular/trending search terms across every retailer serving a postal code -- the same blank-state suggestions shown before a user types anything into the search box. Public data sourced from Instacart's own cross-retailer search.
{
"code": 200,
"msg": "OK",
"data": {
"postal_code": "94105",
"terms": [
{
"term": "kit kat",
"thumbnail_url": "https://www.instacart.com/assets/generic_items/autosuggestions/placeholder.png"
},
{
"term": "wine",
"thumbnail_url": "https://d2lnr5mha7bycj.cloudfront.net/product-image/file/thumb_a23cbed9-9122-4850-8d98-453fe6283dad.png"
}
]
}
}curl "https://api.crawlora.net/api/v1/instacart/trending?postal_code=<postal_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"