action chompthis_get_food_branded_search_php { label: "Get data for branded food items using various search parameters" description: "## Search for branded food items using various parameters.\n\n**Example**\n> ```https://chompthis.com/api/v2/food/branded/search.php?api_key=API_KEY&brand=BRAND&country=COUNTRY&page=1```\n\n**Tips** \n * Get started by using the **[Query Builder](https://chompthis.com/api/build.php)**.\n\n> This API endpoint is only available to Standard and Premium API subscribers. Please consider upgrading your subscription if you are subscribed to the Limited plan. **[Read this](https://desk.zoho.com/portal/chompthis/kb/articles/can-i-upgrade-downgrade-my-subscription)** if you aren't sure how to upgrade your subscription.\n" provider: chompthis method: GET path: "/food/branded/search.php" encoding: json input: { type: "object" properties: { allergen: { type: "string" } brand: { type: "string" } category: { type: "string" } country: { type: "string" } diet: { type: "string" enum: ["Vegan", "Vegetarian", "Gluten Free"] } ingredient: { type: "string" } keyword: { type: "string" } limit: { type: "integer" enum: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] } mineral: { type: "string" } nutrient: { type: "string" } page: { type: "integer" } palm_oil: { type: "string" } trace: { type: "string" } vitamin: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }