action spoonacular_search_recipes_by_nutrients { label: "Search Recipes by Nutrients" description: "Find a set of recipes that adhere to the given nutritional limits. You may set limits for macronutrients (calories, protein, fat, and carbohydrate) and/or many micronutrients." provider: spoonacular method: GET path: "/recipes/findByNutrients" encoding: json input: { type: "object" properties: { maxAlcohol: { type: "number" } maxCaffeine: { type: "number" } maxCalcium: { type: "number" } maxCalories: { type: "number" } maxCarbs: { type: "number" } maxCholesterol: { type: "number" } maxCholine: { type: "number" } maxCopper: { type: "number" } maxFat: { type: "number" } maxFiber: { type: "number" } maxFluoride: { type: "number" } maxFolate: { type: "number" } maxFolicAcid: { type: "number" } maxIodine: { type: "number" } maxIron: { type: "number" } maxMagnesium: { type: "number" } maxManganese: { type: "number" } maxPhosphorus: { type: "number" } maxPotassium: { type: "number" } maxProtein: { type: "number" } maxSaturatedFat: { type: "number" } maxSelenium: { type: "number" } maxSodium: { type: "number" } maxSugar: { type: "number" } maxVitaminA: { type: "number" } maxVitaminB1: { type: "number" } maxVitaminB12: { type: "number" } maxVitaminB2: { type: "number" } maxVitaminB3: { type: "number" } maxVitaminB5: { type: "number" } maxVitaminB6: { type: "number" } maxVitaminC: { type: "number" } maxVitaminD: { type: "number" } maxVitaminE: { type: "number" } maxVitaminK: { type: "number" } maxZinc: { type: "number" } minAlcohol: { type: "number" } minCaffeine: { type: "number" } minCalcium: { type: "number" } minCalories: { type: "number" } minCarbs: { type: "number" } minCholesterol: { type: "number" } minCholine: { type: "number" } minCopper: { type: "number" } minFat: { type: "number" } minFiber: { type: "number" } minFluoride: { type: "number" } minFolate: { type: "number" } minFolicAcid: { type: "number" } minIodine: { type: "number" } minIron: { type: "number" } minMagnesium: { type: "number" } minManganese: { type: "number" } minPhosphorus: { type: "number" } minPotassium: { type: "number" } minProtein: { type: "number" } minSaturatedFat: { type: "number" } minSelenium: { type: "number" } minSodium: { type: "number" } minSugar: { type: "number" } minVitaminA: { type: "number" } minVitaminB1: { type: "number" } minVitaminB12: { type: "number" } minVitaminB2: { type: "number" } minVitaminB3: { type: "number" } minVitaminB5: { type: "number" } minVitaminB6: { type: "number" } minVitaminC: { type: "number" } minVitaminD: { type: "number" } minVitaminE: { type: "number" } minVitaminK: { type: "number" } minZinc: { type: "number" } random: { type: "boolean" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["calories", "carbs", "fat", "id", "image", "imageType", "protein", "title"] properties: { calories: { type: "number" } carbs: { type: "string" } fat: { type: "string" } id: { type: "integer" } image: { type: "string" } imageType: { type: "string" } protein: { type: "string" } title: { type: "string" } } } } }