Endpoint Playground
Test Crawlora's Instacart search 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/search?shop_id=<shop_id>&store_slug=<store_slug>&q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| shop_id | string | Yes | Store's opaque shop id, from GET /instacart/stores | |
| store_slug | string | Yes | Store's retailer slug, from GET /instacart/stores | |
| q | string | Yes | Free-text search term |
{
"code": 200,
"msg": "OK",
"data": {
"shop_id": "9501",
"query": "milk",
"suggestions": [
{
"term": "milk",
"thumbnail_url": "https://d2lnr5mha7bycj.cloudfront.net/product-image/file/thumb_1f0daedf-f4a0-4eb8-a54c-de3656820f43.png",
"relative_url": "/safeway/search_v3/milk?tracking.autocomplete_prefix=milk"
},
{
"term": "milk chocolate",
"thumbnail_url": "https://d2lnr5mha7bycj.cloudfront.net/product-image/file/thumb_example.png",
"relative_url": "/safeway/search_v3/milk%20chocolate"
}
]
}
}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 search-term autosuggestions for a keyword within one store -- the same suggestion list shown in the site's own search box dropdown. This is term-level (matching search phrases plus a representative thumbnail), not a paginated product-results list. Public data sourced from Instacart's own storefront search.
{
"code": 200,
"msg": "OK",
"data": {
"shop_id": "9501",
"query": "milk",
"suggestions": [
{
"term": "milk",
"thumbnail_url": "https://d2lnr5mha7bycj.cloudfront.net/product-image/file/thumb_1f0daedf-f4a0-4eb8-a54c-de3656820f43.png",
"relative_url": "/safeway/search_v3/milk?tracking.autocomplete_prefix=milk"
},
{
"term": "milk chocolate",
"thumbnail_url": "https://d2lnr5mha7bycj.cloudfront.net/product-image/file/thumb_example.png",
"relative_url": "/safeway/search_v3/milk%20chocolate"
}
]
}
}curl "https://api.crawlora.net/api/v1/instacart/search?shop_id=<shop_id>&store_slug=<store_slug>&q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"