action spoonacular_compute_glycemic_load { label: "Compute Glycemic Load" description: "Retrieve the glycemic index for a list of ingredients and compute the individual and total glycemic load." provider: spoonacular method: POST path: "/food/ingredients/glycemicLoad" encoding: json input: { type: "object" required: ["ingredients"] properties: { ingredients: { type: "array" items: { type: "string" } } } } output: { type: "object" required: ["ingredients", "totalGlycemicLoad"] properties: { ingredients: { type: "array" items: { type: "object" required: ["id", "original", "glycemicIndex", "glycemicLoad"] properties: { glycemicIndex: { type: "number" } glycemicLoad: { type: "number" } id: { type: "integer" } original: { type: "string" } } } } totalGlycemicLoad: { type: "number" } } } }