Spoonacular
Recipes, ingredients, meal plans, and nutrition data
Spoonacular is a comprehensive food API — search recipes, parse ingredients, compute nutrition, and generate meal plans. Free tier with a daily point quota after signup.
GET https://api.spoonacular.com/recipes/complexSearch?number=1&addRecipeInformation=false
{
"status": "failure",
"code": 401,
"message": "You are not authorized. Please read https://spoonacular.com/food-api/docs#Authentication"
}curl "https://api.spoonacular.com/recipes/complexSearch?number=1&addRecipeInformation=false"const res = await fetch("https://api.spoonacular.com/recipes/complexSearch?number=1&addRecipeInformation=false");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.spoonacular.com/recipes/complexSearch?number=1&addRecipeInformation=false")
print(res.json())/recipes/complexSearch?number=1&addRecipeInformation=falsePROBEDRecipes, ingredients, meal plans, and nutrition data
/recipesRecipes — documented GET route.
/recipes/1Recipes details by ID (example: 1).
/recipes?limit=10Recipes — documented GET route.
/recipes/search?q=testSearch by query parameters.
/recipes/complexSearch?limit=5ComplexSearch — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Spoonacular: common questions
Is Spoonacular free to use?
Yes — Spoonacular is a free health & food API. Free tier: Free — 50 points/day. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Spoonacular need an API key?
Yes — Spoonacular needs a free API key, which you pass on each request. Rate limits: 50 points/day on free plan.
Can I call Spoonacular from the browser?
Yes — Spoonacular returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Spoonacular up right now?
As of our last scheduled check, Spoonacular is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.