Instacart · Schema
Item
GroceryE-CommerceMarketplaceRetailLogisticsLast Mile DeliveryFulfillmentCatalogAdvertisingAgentsMCP
Properties
| Name | Type | Description |
|---|---|---|
| product_code | string | The retailer's unique product identifier linking this item to its parent product. |
| store_code | string | The retailer's unique store identifier where this item is sold. |
| price | number | The current selling price of the item at this store. |
| sale_price | number | The promotional or sale price, if applicable. |
| sale_start_date | string | The start date of the sale period. |
| sale_end_date | string | The end date of the sale period. |
| available | boolean | Whether the item is currently available for purchase at this store. |
| inventory_count | integer | The current inventory count at this store. |
| aisle | string | The store aisle where the item is located. |
| shelf | string | The shelf location within the aisle. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Item",
"title": "Item",
"type": "object",
"required": [
"product_code",
"store_code"
],
"properties": {
"product_code": {
"type": "string",
"description": "The retailer's unique product identifier linking this item to its parent product."
},
"store_code": {
"type": "string",
"description": "The retailer's unique store identifier where this item is sold."
},
"price": {
"type": "number",
"format": "double",
"description": "The current selling price of the item at this store.",
"minimum": 0
},
"sale_price": {
"type": "number",
"format": "double",
"description": "The promotional or sale price, if applicable.",
"minimum": 0
},
"sale_start_date": {
"type": "string",
"format": "date",
"description": "The start date of the sale period."
},
"sale_end_date": {
"type": "string",
"format": "date",
"description": "The end date of the sale period."
},
"available": {
"type": "boolean",
"description": "Whether the item is currently available for purchase at this store."
},
"inventory_count": {
"type": "integer",
"description": "The current inventory count at this store.",
"minimum": 0
},
"aisle": {
"type": "string",
"description": "The store aisle where the item is located."
},
"shelf": {
"type": "string",
"description": "The shelf location within the aisle."
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/instacart-item"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.