Endpoint Playground
Test Crawlora's Instacart item 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/item?shop_id=<shop_id>&store_slug=<store_slug>&retailer_location_id=<retailer_location_id>&product_id=<product_id>&postal_code=<postal_code>" \
-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 | |
| retailer_location_id | string | Yes | Store's opaque retailer location id, from GET /instacart/stores | |
| product_id | string | Yes | Instacart's opaque product id | |
| postal_code | string | Yes | Postal code to price/localize the lookup for |
{
"code": 200,
"msg": "OK",
"data": {
"id": "items_53-17830663",
"product_id": "17830663",
"name": "Lucerne Blended Plain Yogurt",
"size": "32 oz",
"brand_name": "lucerne",
"image_url": "https://d2lnr5mha7bycj.cloudfront.net/product-image/file/large_4978279a-5ed6-4a86-9dc2-67969ae09186.png",
"price": {
"current_price": 2.99,
"regular_price": 3.99,
"on_sale": true,
"offer_label": "25% off",
"pricing_unit": "32 oz"
},
"available": true,
"stock_level": "inStock",
"dietary_labels": [
"low_carb",
"low_sugar"
],
"nutrition": [
{
"label": "Protein",
"value": "7",
"unit": "g"
},
{
"label": "Fat",
"value": "6",
"unit": "g"
},
{
"label": "Sugar",
"value": "10",
"unit": "g"
},
{
"label": "Calories",
"value": "150"
}
],
"variant_options_summary": "2 total options"
}
}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 a single product's detail at a specific Instacart store: name, size, brand, image, current pricing (with any sale/offer badge), availability, stock level, dietary labels, and nutrition facts. Public data sourced from Instacart's own storefront pages.
{
"code": 200,
"msg": "OK",
"data": {
"id": "items_53-17830663",
"product_id": "17830663",
"name": "Lucerne Blended Plain Yogurt",
"size": "32 oz",
"brand_name": "lucerne",
"image_url": "https://d2lnr5mha7bycj.cloudfront.net/product-image/file/large_4978279a-5ed6-4a86-9dc2-67969ae09186.png",
"price": {
"current_price": 2.99,
"regular_price": 3.99,
"on_sale": true,
"offer_label": "25% off",
"pricing_unit": "32 oz"
},
"available": true,
"stock_level": "inStock",
"dietary_labels": [
"low_carb",
"low_sugar"
],
"nutrition": [
{
"label": "Protein",
"value": "7",
"unit": "g"
},
{
"label": "Fat",
"value": "6",
"unit": "g"
},
{
"label": "Sugar",
"value": "10",
"unit": "g"
},
{
"label": "Calories",
"value": "150"
}
],
"variant_options_summary": "2 total options"
}
}curl "https://api.crawlora.net/api/v1/instacart/item?shop_id=<shop_id>&store_slug=<store_slug>&retailer_location_id=<retailer_location_id>&product_id=<product_id>&postal_code=<postal_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"