action spoonacular_get_comparable_products { label: "Get Comparable Products" description: "Find comparable products to the given one." provider: spoonacular method: GET path: "/food/products/upc/{upc}/comparable" encoding: json input: { type: "object" properties: { upc: { type: "number" } } required: ["upc"] additionalProperties: false } output: { type: "object" required: ["comparableProducts"] properties: { comparableProducts: { type: "object" required: ["calories", "likes", "price", "protein", "spoonacularScore", "sugar"] properties: { calories: { type: "array" items: { type: "object" } } likes: { type: "array" items: { type: "object" } } price: { type: "array" items: { type: "object" } } protein: { type: "array" items: { type: "object" required: ["difference", "id", "image", "title"] properties: { difference: { type: "number" } id: { type: "integer" } image: { type: "string" } title: { type: "string" } } } } spoonacularScore: { type: "array" items: { type: "object" required: ["difference", "id", "image", "title"] properties: { difference: { type: "number" } id: { type: "integer" } image: { type: "string" } title: { type: "string" } } } } sugar: { type: "array" items: { type: "object" } } } } } } }