action spoonacular_get_ingredient_information { label: "Get Ingredient Information" description: "Use an ingredient id to get all available information about an ingredient, such as its image and supermarket aisle." provider: spoonacular method: GET path: "/food/ingredients/{id}/information" encoding: json input: { type: "object" properties: { amount: { type: "number" } id: { type: "number" } unit: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["aisle", "amount", "categoryPath", "consistency", "estimatedCost", "id", "image", "meta", "name", "nameClean", "nutrition", "original", "originalName", "possibleUnits", "shoppingListUnits", "unit", "unitLong", "unitShort"] properties: { aisle: { type: "string" } amount: { type: "number" } categoryPath: { type: "array" items: { type: "string" } } consistency: { type: "string" } estimatedCost: { type: "object" required: ["unit", "value"] properties: { unit: { type: "string" } value: { type: "number" } } } id: { type: "integer" } image: { type: "string" } meta: { type: "array" items: { type: "object" } } name: { type: "string" } nameClean: { type: "string" } nutrition: { type: "object" required: ["caloricBreakdown", "nutrients", "properties", "weightPerServing"] 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" } } } } properties: { type: "array" items: { type: "object" required: ["name", "amount", "unit"] properties: { amount: { type: "number" } name: { type: "string" } unit: { type: "string" } } } } weightPerServing: { type: "object" required: ["amount", "unit"] properties: { amount: { type: "number" } unit: { type: "string" } } } } } original: { type: "string" } originalName: { type: "string" } possibleUnits: { type: "array" items: { type: "string" } } shoppingListUnits: { type: "array" items: { type: "string" } } unit: { type: "string" } unitLong: { type: "string" } unitShort: { type: "string" } } } }