action spoonacular_analyze_recipe { label: "Analyze Recipe" description: "This endpoint allows you to send raw recipe information, such as title, servings, and ingredients, to then see what we compute (badges, diets, nutrition, and more). This is useful if you have your own recipe data and want to enrich it with our semantic analysis." provider: spoonacular method: POST path: "/recipes/analyze" encoding: json input: { type: "object" properties: { includeNutrition: { type: "boolean" } includeTaste: { type: "boolean" } ingredients: { type: "array" items: { type: "string" } } instructions: { type: "string" } language: { type: "string" } servings: { type: "integer" } title: { type: "string" } } additionalProperties: false } output: { type: "object" } }