Recipe API
YMove vs Spoonacular: Recipe API Comparison
Feature Comparison
| Feature | YMove | Spoonacular |
|---|---|---|
| Recipe search | ||
| Diet filtering | ||
| Cuisine filtering | ||
| Per-ingredient nutrition mapped to USDA | ||
| Per-serving full macros | ||
| Macro-target search (minProtein, etc.) | ||
| Recipe images (CDN-served) | ||
| Free tier for development | ||
| Bundled with food database & barcode lookup | ||
| Bundled with AI food logging | ||
| Bundled with exercise content | ||
| Single API key for nutrition + recipes | ||
| Starting paid price | $19/mo bundle | $5/mo |
| Bundle price (recipes + nutrition + exercise) | $19/mo | $34+/mo |
Recipe search
Diet filtering
Cuisine filtering
Per-ingredient nutrition mapped to USDA
Per-serving full macros
Macro-target search (minProtein, etc.)
Recipe images (CDN-served)
Free tier for development
Bundled with food database & barcode lookup
Bundled with AI food logging
Bundled with exercise content
Single API key for nutrition + recipes
Starting paid price
Bundle price (recipes + nutrition + exercise)
Spoonacular has the largest standalone recipe API
Spoonacular ships ~365k recipes with deep search functionality, ingredient substitution suggestions, meal plan generation, and a wine-pairing extra. For recipe-only products, it is hard to beat on raw breadth and feature depth. The entry-level $5/mo plan is also lower than YMove's $19/mo, if you only need recipes.
Where YMove wins: bundling
Most teams that ship a recipe app also ship a calorie tracker, macro counter, or exercise component. With Spoonacular, you bolt on a separate nutrition api and a separate exercise api. The total stack often costs $34/mo or more.
YMove rolls all of that into one $19/mo plan with a single API key. Recipe search, per-ingredient USDA-mapped nutrition, food database, barcode lookup, AI food logging from text and photo, exercise videos, and workout generation are all reachable from the same auth.
Per-ingredient nutrition fidelity
Spoonacular computes per-ingredient nutrition by parsing the ingredient string and looking up matching foods. The matching is good but not perfect, and edge cases (ambiguous units, brand-only items) can drift. YMove maps each ingredient to a specific USDA FoodData Central row at recipe-write time, so per-ingredient calories and macros are consistent and reproducible across recipes.
Endpoint mapping
# Spoonacular: complex recipe search
GET /recipes/complexSearch?query=chicken&diet=high-protein
# YMove: equivalent
GET /api/v2/recipes/search?query=chicken&diet=high_protein
# Spoonacular: recipe details
GET /recipes/{id}/information
# YMove: recipe details
GET /api/v2/recipes/{slug}When Spoonacular wins
If you only need recipes (no nutrition tracker, no exercise content, no macro logging), Spoonacular at $5/mo is the cheaper entry point and has a larger recipe corpus. Pick Spoonacular for pure recipe products. Pick YMove if you also need food database, barcode lookup, AI food logging, or exercise content under one key.
Frequently Asked Questions
Is Spoonacular cheaper than YMove?
For recipes only, yes: Spoonacular's entry tier is $5/mo. YMove's $19/mo plan also includes nutrition, food database, barcode lookup, AI food logging, and exercise content, so the total cost for a typical fitness or nutrition app is lower on YMove.
Does YMove have as many recipes as Spoonacular?
No. Spoonacular has ~365k recipes; YMove's set is smaller and curated. Volume is not YMove's pitch on recipes; per-ingredient USDA-mapped nutrition fidelity and bundling are.
Can I migrate off Spoonacular to YMove?
The endpoint shapes are similar. /recipes/complexSearch maps to /api/v2/recipes/search, and /recipes/{id}/information maps to /api/v2/recipes/{slug}. Field names differ but the response shape is parallel. Most teams swap in under a day.
Does YMove support recipe images?
Yes. Every YMove recipe has an imageUrl served from Bunny CDN with on-the-fly resize and format conversion. Pass ?width=400&format=auto&quality=80 to render small thumbnails.
What about meal plan generation?
Both APIs support meal plan generation. YMove's /api/v2/mealplans/generate accepts calorie targets and macro splits. Spoonacular's meal plan endpoint is similar in shape.
One API key for everything
Recipes, nutrition, food database, barcode, AI food logging, and exercise content on $19/mo.
Start Free Trial