action chompthis_get_food_ingredient_search_php { label: "Get raw/generic food ingredient item(s)" description: "## Get data for a specific ingredient or a specific set of ingredients.\n\n**Example #1: Single Ingredient**\n> ```https://chompthis.com/api/v2/ingredient/search.php?api_key=API_KEY&find=raw broccoli```\n\n**Example #2: Set of Ingredients**\n> ```https://chompthis.com/api/v2/ingredient/search.php?api_key=API_KEY&find=raw broccoli,mashed potatoes,chicken drumstick```\n\n**Tips**\n * Expose ingredient endpoints by using our **[food lookup tool](https://chompthis.com/api/lookup.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/ingredient/search.php" encoding: json input: { type: "object" properties: { find: { type: "string" } limit: { type: "integer" enum: [1, 2, 3] } } required: ["find"] additionalProperties: false } output: { type: "object" additionalProperties: true } }