action spoonacular_get_similar_recipes { label: "Get Similar Recipes" description: "Find recipes which are similar to the given one." provider: spoonacular method: GET path: "/recipes/{id}/similar" encoding: json input: { type: "object" properties: { id: { type: "number" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "title", "imageType", "readyInMinutes", "servings", "sourceUrl"] properties: { id: { type: "integer" } imageType: { type: "string" } readyInMinutes: { type: "integer" } servings: { type: "number" } sourceUrl: { type: "string" } title: { type: "string" } } } } }