action spoonacular_visualize_recipe_taste_by_id { label: "Recipe Taste by ID Widget" description: "Get a recipe's taste. The tastes supported are sweet, salty, sour, bitter, savory, and fatty." provider: spoonacular method: GET path: "/recipes/{id}/tasteWidget" encoding: json input: { type: "object" properties: { id: { type: "number" } normalize: { type: "boolean" enum: [true, false] } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }