Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| title | string | |
| restaurantChain | string | |
| nutrition | object | |
| badges | array | |
| breadcrumbs | array | |
| generatedText | string | |
| imageType | string | |
| likes | integer | |
| servings | object | |
| price | number | |
| spoonacularScore | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "MenuItem",
"description": "",
"$id": "https://raw.githubusercontent.com/api-evangelist/spoonacular/refs/heads/main/json-schema/spoonacular-menu-item-schema.json",
"type": "object",
"properties": {
"id": {
"type": "integer",
"example": 716429
},
"title": {
"type": "string",
"minLength": 1,
"example": "example"
},
"restaurantChain": {
"type": "string",
"minLength": 1,
"example": "example"
},
"nutrition": {
"type": "object",
"required": [
"nutrients",
"caloricBreakdown"
],
"properties": {
"nutrients": {
"type": "array",
"uniqueItems": true,
"minItems": 0,
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"amount": {
"type": "number"
},
"unit": {
"type": "string",
"minLength": 1
},
"percentOfDailyNeeds": {
"type": "number"
}
},
"required": [
"name",
"amount",
"unit",
"percentOfDailyNeeds"
]
}
},
"caloricBreakdown": {
"type": "object",
"required": [
"percentProtein",
"percentFat",
"percentCarbs"
],
"properties": {
"percentProtein": {
"type": "number",
"example": 1.0
},
"percentFat": {
"type": "number",
"example": 1.0
},
"percentCarbs": {
"type": "number",
"example": 1.0
}
}
}
}
},
"badges": {
"type": "array",
"items": {
"type": "string"
}
},
"breadcrumbs": {
"type": "array",
"items": {
"type": "string"
}
},
"generatedText": {
"type": "string",
"nullable": true,
"example": "example"
},
"imageType": {
"type": "string",
"minLength": 1,
"example": "example"
},
"likes": {
"type": "integer",
"example": 1
},
"servings": {
"type": "object",
"required": [
"number",
"size",
"unit"
],
"properties": {
"number": {
"type": "number",
"example": 10
},
"size": {
"type": "number",
"nullable": true,
"example": 1.0
},
"unit": {
"type": "string",
"nullable": true,
"minLength": 1,
"example": "metric"
}
}
},
"price": {
"type": "number",
"nullable": true,
"example": 1.0
},
"spoonacularScore": {
"type": "number",
"nullable": true,
"example": 1.0
}
},
"required": [
"id",
"title",
"restaurantChain",
"price",
"spoonacularScore"
],
"example": {
"id": 424571,
"title": "Bacon King Burger",
"restaurantChain": "Burger King",
"nutrition": {
"nutrients": [
{
"name": "Fat",
"amount": 69,
"unit": "g",
"percentOfDailyNeeds": 30
},
{
"name": "Protein",
"amount": 57,
"unit": "g",
"percentOfDailyNeeds": 35
},
{
"name": "Calories",
"amount": 1040,
"unit": "cal",
"percentOfDailyNeeds": 50
},
{
"name": "Carbohydrates",
"amount": 48,
"unit": "g",
"percentOfDailyNeeds": 35
}
],
"caloricBreakdown": {
"percentProtein": 35,
"percentFat": 30,
"percentCarbs": 35
}
},
"badges": [],
"breadcrumbs": [
"burger",
"main course",
"food product category"
],
"generatedText": "",
"imageType": "png",
"likes": 0,
"servings": {
"number": 1,
"size": 2,
"unit": "oz"
},
"price": 2.35,
"spoonacularScore": 12.5
}
}
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/spoonacular-menu-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.