Overview
The Tasty API, available on RapidAPI, provides access to recipe data, meal plans, ingredient lists, and cooking tips from the popular BuzzFeed Tasty platform. It requires a RapidAPI key obtained by subscribing to the Tasty API on RapidAPI.com. It is a good choice for building recipe search apps or generating weekly meal plans.
Beginner Tip
Sign up for a free RapidAPI account and subscribe to the Tasty API — you must include both X-RapidAPI-Key and X-RapidAPI-Host headers in every request or you will get a 403 error.
Available Data
Example Response
{
"recipe": "Chicken Stir Fry",
"calories": 380,
"protein_g": 32,
"carbs_g": 28,
"fat_g": 14,
"ingredients": [
"chicken breast",
"bell pepper",
"soy sauce",
"garlic"
],
"prep_time_minutes": 20
} Field Reference
count Total number of recipes matching the query. results Array of recipe objects matching the search criteria. results[].id Unique Tasty recipe identifier. results[].name Display name of the recipe. results[].thumbnail_url URL of the recipe thumbnail image. results[].total_time_minutes Total preparation and cooking time in minutes; may be null. Implementation Example
const url = "https://rapidapi.com/apidojo/api/tasty/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Chomp
The Chomp API provides detailed nutritional data for millions of grocery products and restaurant menu items, including macros, ingredients, and allergen flags.
Edamam nutrition
The Edamam Nutrition Analysis API parses natural-language food descriptions such as "1 cup of oatmeal" or "200g chicken breast" and returns detailed nutritional breakdowns including calories, macros, vitamins, and minerals.
Edamam recipes
⭐ Beginner's PickThe Edamam Recipe Search API lets you search a database of over 2 million recipes filtered by ingredients, diet labels such as vegan or keto, meal type, and cuisine.
Kroger
The Kroger API gives developers access to product catalog data, pricing, store locations, and promotions from one of the largest US grocery chains.
LCBO
The LCBO API provides access to the Liquor Control Board of Ontario product catalog, including wines, spirits, and beers sold in Ontario, Canada.