action spoonacular_get_menu_item_information { label: "Get Menu Item Information" description: "Use a menu item id to get all available information about a menu item, such as nutrition." provider: spoonacular method: GET path: "/food/menuItems/{id}" encoding: json input: { type: "object" properties: { id: { type: "number" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["badges", "breadcrumbs", "id", "imageType", "likes", "nutrition", "restaurantChain", "servings", "title"] properties: { badges: { type: "array" items: { type: "string" } } breadcrumbs: { type: "array" items: { type: "string" } } generatedText: { type: "string" } id: { type: "integer" } imageType: { type: "string" } likes: { type: "number" } nutrition: { type: "object" required: ["caloricBreakdown", "nutrients"] properties: { caloricBreakdown: { type: "object" required: ["percentCarbs", "percentFat", "percentProtein"] properties: { percentCarbs: { type: "number" } percentFat: { type: "number" } percentProtein: { type: "number" } } } nutrients: { type: "array" items: { type: "object" required: ["name", "amount", "unit", "percentOfDailyNeeds"] properties: { amount: { type: "number" } name: { type: "string" } percentOfDailyNeeds: { type: "number" } unit: { type: "string" } } } } } } price: { type: "number" } restaurantChain: { type: "string" } servings: { type: "object" required: ["number", "size", "unit"] properties: { number: { type: "number" } size: { type: "number" } unit: { type: "string" } } } spoonacularScore: { type: "number" } title: { type: "string" } } } }