action spoonacular_classify_grocery_product { label: "Classify Grocery Product" description: "This endpoint allows you to match a packaged food to a basic category, e.g. a specific brand of milk to the category milk." provider: spoonacular method: POST path: "/food/products/classify" encoding: json input: { type: "object" properties: { locale: { type: "string" enum: ["en_US", "en_GB"] } plu_code: { type: "string" } title: { type: "string" } upc: { type: "string" } } required: ["plu_code", "title", "upc"] additionalProperties: false } output: { type: "object" required: ["breadcrumbs", "category", "cleanTitle", "image", "usdaCode"] properties: { breadcrumbs: { type: "array" items: { type: "string" } } category: { type: "string" } cleanTitle: { type: "string" } image: { type: "string" } usdaCode: { type: "integer" } } } }