action spoonacular_search_custom_foods { label: "Search Custom Foods" description: "Search custom foods in a user's account." provider: spoonacular method: GET path: "/food/customFoods/search" encoding: json input: { type: "object" properties: { hash: { type: "string" } username: { type: "string" } } required: ["hash", "username"] additionalProperties: false } output: { type: "object" required: ["customFoods", "number", "offset", "type"] properties: { customFoods: { type: "array" items: { type: "object" required: ["id", "title", "servings", "imageUrl", "price"] properties: { id: { type: "integer" } imageUrl: { type: "string" } price: { type: "number" } servings: { type: "number" } title: { type: "string" } } } } number: { type: "integer" } offset: { type: "integer" } type: { type: "string" } } } }