action spoonacular_search_food_videos { label: "Search Food Videos" description: "Find recipe and other food related videos." provider: spoonacular method: GET path: "/food/videos/search" encoding: json input: { type: "object" properties: { cuisine: { type: "string" } diet: { type: "string" } excludeIngredients: { type: "string" } includeIngredients: { type: "string" } maxLength: { type: "number" } minLength: { type: "number" } type: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["totalResults", "videos"] properties: { totalResults: { type: "integer" } videos: { type: "array" items: { type: "object" required: ["title", "length", "rating", "shortTitle", "thumbnail", "views", "youTubeId"] properties: { length: { type: "integer" } rating: { type: "number" } shortTitle: { type: "string" } thumbnail: { type: "string" } title: { type: "string" } views: { type: "integer" } youTubeId: { type: "string" } } } } } } }