Discover/Tasty API
live

Tasty APItasty.co

Search Tasty.co recipes, retrieve ingredients, step-by-step instructions, nutrition data, and user tips via a structured JSON API with 4 endpoints.

Endpoint health
verified 13h ago
search_recipes
get_recipe_details
get_popular_recipes
get_recipe_tips
4/4 passing latest checkself-healing
Endpoints
4
Updated
22d ago

What is the Tasty API?

The Tasty.co API gives developers structured access to Tasty's recipe catalog across 4 endpoints, covering search, detailed recipe data, trending content, and user tips. The get_recipe_details endpoint returns a full breakdown of a recipe including ingredients, numbered instructions, ISO 8601 cook and prep times, nutrition macros, and author credits — all keyed by the recipe's URL slug.

Try it
Number of results to return per page.
Search keyword or phrase (e.g. 'chicken', 'chocolate cake', 'pasta').
Offset for pagination (number of items to skip).
api.parse.bot/scraper/7d28e1e6-41ea-4c03-805c-513435b41acb/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/7d28e1e6-41ea-4c03-805c-513435b41acb/search_recipes?limit=5&query=chicken&offset=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace tasty-co-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.tasty.co_recipe_api import Tasty, RecipeSummary, Recipe, Catalog, Tip

tasty = Tasty()

# Search for chicken recipes
for recipe in tasty.recipesummaries.search(query="chicken"):
    print(recipe.name, recipe.slug, recipe.tags)
    break

# Get the full recipe details from a summary
chicken = RecipeSummary(_api=tasty, slug="original-orange-chicken-by-panda-express")
detail = chicken.details()
print(detail.title, detail.prep_time)
for ingredient in detail.ingredients:
    print(ingredient)

# Browse tips on a recipe
for tip in chicken.tips.list():
    print(tip.author, tip.tip_body, tip.upvotes_total)
    break

# Get the popular recipes catalog
catalog = tasty.catalogs.get()
print(catalog.popular.category)
for item in catalog.popular.items:
    print(item.name, item.thumbnail_url)
All endpoints · 4 totalmissing one? ·

Full-text search over Tasty.co recipes by keyword. Returns recipe summaries with names, slugs, IDs, thumbnails, tags, and cooking times. Supports offset-based pagination.

Input
ParamTypeDescription
limitintegerNumber of results to return per page.
queryrequiredstringSearch keyword or phrase (e.g. 'chicken', 'chocolate cake', 'pasta').
offsetintegerOffset for pagination (number of items to skip).
Response
{
  "type": "object",
  "fields": {
    "count": "integer total number of matching recipes",
    "items": "array of recipe summary objects with id, name, slug, thumbnail_url, tags, times, and credits"
  },
  "sample": {
    "data": {
      "count": 1357,
      "items": [
        {
          "id": 3383,
          "name": "Original Orange Chicken by Panda Express",
          "slug": "original-orange-chicken-by-panda-express",
          "tags": [
            "north_american",
            "chinese",
            "comfort_food"
          ],
          "times": {
            "cook_time": {
              "iso": "PT15M",
              "display": "15 minutes",
              "minutes": 15
            },
            "prep_time": {
              "iso": "PT20M",
              "display": "20 minutes",
              "minutes": 20
            },
            "total_time": {
              "iso": "PT1H5M",
              "display": "1 hr 5 min",
              "minutes": 65
            }
          },
          "credits": [
            {
              "name": "Pierce Abernathy",
              "type": "internal"
            }
          ],
          "thumbnail_url": "https://img.buzzfeed.com/thumbnailer-prod-us-east-1/video-api/assets/131902.jpg"
        }
      ]
    },
    "status": "success"
  }
}

About the Tasty API

Search and Browse Recipes

The search_recipes endpoint accepts a query string (single keywords or multi-word phrases like 'chocolate cake' or 'pasta') along with optional limit and offset integers for pagination. Results include a count of total matches and an items array of recipe summaries, each carrying an id, name, slug, thumbnail_url, tags, times, and credits. The get_popular_recipes endpoint takes no parameters and returns the current trending carousel as a popular object with a category label and a matching items array.

Recipe Details and Nutrition

Pass a recipe slug to get_recipe_details to receive the full record: a title, description, image URL, author (individual or organization), ingredients array of formatted strings, instructions array of step strings, cook_time and prep_time as ISO 8601 durations, and a nutrition object containing calories, fat, protein, carbohydrate, fiber, and sugar. Tags are returned as an array of keyword strings useful for filtering or categorization downstream.

User Tips

The get_recipe_tips endpoint accepts a numeric recipe_id (obtainable from search_recipes or get_popular_recipes results) plus an optional offset for paging. It returns a tips_count integer and a tips array sorted by upvotes_total descending. Each tip object includes author, tip_body, tip_photo, and updated_at, making it straightforward to surface the most useful community feedback alongside a recipe.

Reliability & maintenanceVerified

The Tasty API is a managed, monitored endpoint for tasty.co — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when tasty.co changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official tasty.co API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
13h ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a recipe search interface that surfaces thumbnails and cook times from search_recipes results
  • Populate a meal-planning app with structured ingredient lists and step-by-step instructions from get_recipe_details
  • Display a 'trending today' section using the carousel returned by get_popular_recipes
  • Aggregate nutrition macros (calories, protein, carbohydrates) across a weekly meal plan
  • Show top-rated community tips alongside a recipe using get_recipe_tips sorted by upvotes
  • Tag and categorize a recipe corpus using the tags arrays returned across all endpoints
  • Drive dietary filtering by parsing ISO 8601 prep and cook times to surface quick-meal options
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Tasty.co have an official developer API?+
Tasty.co does not publish an official public developer API or documented REST surface for third-party use.
What does `get_recipe_details` return for nutrition, and are all fields always populated?+
The nutrition object includes calories, fat, protein, carbohydrate, fiber, and sugar. Not every recipe on Tasty has nutrition data filled in, so individual fields may be null or absent for some slugs.
Can I retrieve user ratings or star scores for a recipe?+
Not currently. The API covers user-submitted tips with upvote counts via get_recipe_tips, but numeric star ratings are not part of any endpoint's response. You can fork this API on Parse and revise it to add a ratings endpoint.
Does the API return video URLs for recipes that have video guides?+
get_recipe_details includes video information in its response where available, but dedicated video stream URLs or embed codes are not guaranteed for every recipe. Coverage depends on what Tasty has published for a given slug.
Can I filter `search_recipes` results by dietary tag, cuisine, or cook time?+
The search_recipes endpoint accepts only a query string plus limit and offset for pagination. Tag- or time-based filtering is not a built-in parameter. Each result does include a tags array, so client-side filtering is possible. You can fork this API on Parse and revise it to add server-side tag filtering if needed.
Page content last updated . Spec covers 4 endpoints from tasty.co.
Related APIs in Food DiningSee all →
epicurious.com API
Search Epicurious recipes by ingredient or cuisine, view detailed recipe information including ingredients and instructions, and read user reviews to find the best dishes to cook. Get everything you need to discover and prepare new meals from one of the web's most trusted recipe sources.
allrecipes.com API
Search and browse millions of recipes from Allrecipes while accessing detailed information like ingredients, step-by-step instructions, nutritional facts, and user reviews. Find the perfect dish by searching specific recipes or exploring curated categories.
seriouseats.com API
Search and retrieve thousands of recipes and expert cooking advice from Serious Eats to find exactly what you're looking for in the kitchen. Get detailed recipe information including ingredients, instructions, and trusted culinary expertise to help you cook with confidence.
bbcgoodfood.com API
Search thousands of recipes with full ingredient lists, cooking directions, and nutritional information. Browse recipes by topic and category, and access user reviews and ratings for each dish.
akispetretzikis.com API
Search and discover thousands of recipes from Akis Petretzikis' collection, then view detailed cooking instructions, ingredients, and nutritional information for each dish. Browse recipes by category to find exactly what you're looking for, whether you need a quick weeknight dinner or an elaborate dessert.
blueapron.com API
Search and browse Blue Apron recipes, menus, and cookbooks to discover meal ideas and get detailed recipe information. Access the complete recipe catalog through sitemaps and detailed recipe listings with ingredients and instructions.
matprat.no API
Search and discover recipes from Matprat's collection, view detailed recipe information, get weekly meal plan suggestions, and find what's currently popular—all with helpful autocomplete to guide your searches. Plan your meals effortlessly by browsing recipes and organizing them into weekly menus.
liquor.com API
Find and browse thousands of cocktail recipes with ratings and user reviews, search drinks by ingredient or category, and read curated articles about spirits and mixology. Get detailed recipe instructions, comments from other users, and expert content all in one place.