Free meal planner with nutritional info. Save recipes from any site. All Your Food. One Place
Go to siteThe Spoonacular API is a robust culinary interface that can enhance apps with food and nutrition data. With rich endpoints for recipes, ingredients, and meal planning, developers can automate content creation, manage diet tracking, or enrich e-commerce platforms. Pipedream's serverless platform empowers you to create custom Spoonacular workflows, linking with other APIs and services to streamline tasks, like auto-generating shopping lists or scheduling weekly meal plans based on dietary preferences.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
spoonacular: {
type: "app",
app: "spoonacular",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.spoonacular.com/recipes/complexSearch`,
headers: {
"Content-Type": `application/json`,
"x-api-key": `${this.spoonacular.$auth.api_key}`,
},
params: {
query: `{your_query}`,
},
})
},
})
Recipe Content Automation: Integrate Spoonacular with a CMS platform like WordPress on Pipedream. Automatically fetch new, trending recipes and post them directly to your food blog, enabling you to keep content fresh with minimal effort.
Diet Tracker Integration: Sync Spoonacular with Google Sheets on Pipedream to log nutritional information. Each time a user logs a meal, Pipedream can call Spoonacular to retrieve dietary data, append it to a sheet, and provide real-time macro tracking for fitness apps.
Smart Grocery List Creation: Combine Spoonacular with Twilio SMS on Pipedream to generate and send shopping lists. When a user plans meals for the week, Spoonacular can help create a grocery list, which Pipedream then texts to the user via Twilio, simplifying shopping trips.
Spoonacular uses API keys for authentication. When you connect your Spoonacular account, Pipedream securely stores the keys so you can easily authenticate to Spoonacular APIs in both code and no-code steps.