Discover/Allrecipes API
live

Allrecipes APIallrecipes.com

Access Allrecipes data via API: search recipes by keyword, retrieve ingredients, nutrition, cook times, ratings, and user reviews. 3 endpoints.

Endpoint health
verified 4d ago
list_recipes_a_z
search_recipes
get_recipe_details
3/3 passing latest checkself-healing
Endpoints
3
Updated
22d ago

What is the Allrecipes API?

The Allrecipes API exposes 3 endpoints for retrieving recipe data from allrecipes.com, including full ingredient lists, step-by-step instructions, nutritional facts, and user reviews. The get_recipe_details endpoint returns over 10 structured fields per recipe — covering prep time, cook time, servings, author, rating, and a full nutrition object. The search_recipes endpoint supports paginated keyword queries, and list_recipes_a_z provides an alphabetical category directory for broad browsing.

Try it
Search keyword (e.g. 'chicken', 'lasagna', 'pasta')
Results offset for pagination (increments of 24)
api.parse.bot/scraper/b0dc514a-15e8-4a86-be7a-1745ac3b62c9/<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/b0dc514a-15e8-4a86-be7a-1745ac3b62c9/search_recipes?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 allrecipes-com-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.

"""AllRecipes SDK — search recipes, get details, browse categories."""
from parse_apis.allrecipes import AllRecipes, RecipeNotFound

client = AllRecipes()

# Search for recipes by keyword — limit= caps total items fetched.
for summary in client.recipesummaries.search(query="lasagna", limit=3):
    print(summary.title, summary.url)

# Drill into one recipe for full details via .first()
summary = client.recipesummaries.search(query="chicken parmesan", limit=1).first()
if summary:
    recipe = summary.details()
    print(recipe.title, recipe.rating, recipe.total_time)
    print("Ingredients:", len(recipe.ingredients))
    for step in recipe.instructions[:2]:
        print(" -", step[:80])
    if recipe.nutrition:
        print("Calories:", recipe.nutrition.calories)

# Browse all categories from the A-Z directory
for cat in client.categories.list(limit=5):
    print(cat.label, cat.url)

# Typed error handling: catch RecipeNotFound for a missing recipe
try:
    gone = client.recipes.get(url="https://www.allrecipes.com/recipe/000000/no-such-recipe/")
    print(gone.title)
except RecipeNotFound as exc:
    print(f"Recipe not found: {exc.url}")

print("Exercised: recipesummaries.search, summary.details, categories.list, recipes.get + RecipeNotFound")
All endpoints · 3 totalmissing one? ·

Full-text search over AllRecipes by keyword. Returns up to 24 recipe summaries per page. Pagination is offset-based in increments of 24. Each result contains a title and URL suitable for fetching full details via get_recipe_details.

Input
ParamTypeDescription
queryrequiredstringSearch keyword (e.g. 'chicken', 'lasagna', 'pasta')
offsetintegerResults offset for pagination (increments of 24)
Response
{
  "type": "object",
  "fields": {
    "query": "search keyword echoed back",
    "offset": "integer offset used",
    "results": "array of recipe summary objects each containing title (string) and url (string)",
    "has_next": "boolean indicating whether more results are available"
  },
  "sample": {
    "data": {
      "query": "chicken",
      "offset": 0,
      "results": [
        {
          "url": "https://www.allrecipes.com/recipe/8858/cream-of-chicken-breasts/",
          "title": "Cream of Chicken Breasts"
        },
        {
          "url": "https://www.allrecipes.com/recipe/242342/fiesta-slow-cooker-shredded-chicken-tacos/",
          "title": "Slow Cooker Chicken Tacos"
        }
      ],
      "has_next": true
    },
    "status": "success"
  }
}

About the Allrecipes API

Searching Recipes

The search_recipes endpoint accepts a query string (e.g. 'chicken', 'lasagna') and returns up to 24 results per page as an array of objects, each containing a title and url. Pagination is handled via the offset parameter in increments of 24; the has_next boolean in the response tells you whether additional pages exist. This is the starting point for any workflow that needs to discover recipes by topic.

Recipe Detail Fields

Once you have a recipe URL — either from search results or a known allrecipes.com path — pass it to get_recipe_details. The response includes title, author, rating (as a string like '4.9'), servings, prep_time, cook_time, category (an array of strings), and a nutrition object covering calories, fat, protein, and related values. The reviews array contains per-review fields: author, rating, text, and date, allowing you to analyze community feedback alongside nutritional data.

Category Directory

The list_recipes_a_z endpoint takes no inputs and returns a letters array — each entry has a label (category name) and a url pointing to that category on Allrecipes. This is useful for building category browsers or discovery tools without needing a specific search term.

Limitations and Data Shape

The get_recipe_details response does not currently include raw ingredient quantities as a parsed, structured list — ingredients appear as part of the instructions context. The search_recipes results return titles and URLs only; detailed fields are only available by following up with get_recipe_details. Review volume is not capped in the response spec, but very lightly reviewed recipes may return sparse reviews arrays.

Reliability & maintenanceVerified

The Allrecipes API is a managed, monitored endpoint for allrecipes.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when allrecipes.com 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 allrecipes.com 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
4d ago
Latest check
3/3 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 filtered by keyword using search_recipes with pagination via offset.
  • Aggregate nutritional data across multiple recipes to compare calorie and protein content using the nutrition object.
  • Display user sentiment for a recipe by surfacing review text, rating, and date from get_recipe_details.
  • Populate a meal planning app with cook times, prep times, and serving sizes from recipe detail responses.
  • Generate a category browsing experience using the alphabetical directory from list_recipes_a_z.
  • Track average recipe ratings across a cuisine category by combining search results with per-recipe rating fields.
  • Enrich a food database with structured author attribution and category tags from get_recipe_details.
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 Allrecipes have an official developer API?+
Allrecipes does not offer a public developer API. There is no documented API program, OAuth flow, or official endpoint reference available to third-party developers on allrecipes.com.
What does `get_recipe_details` return for nutrition data?+
The nutrition field is an object containing values such as calories, fat, and protein. The exact sub-fields depend on what Allrecipes publishes for a given recipe — not every recipe has a complete nutrition panel, so some fields may be absent or null for certain entries.
Does `search_recipes` return ingredients or instructions directly?+
No. The search_recipes endpoint returns only title and url per result, plus pagination metadata (offset, has_next). To get ingredients, instructions, and nutrition, you need to call get_recipe_details with the URL from the search results.
Does the API return a structured, parsed ingredient list (quantities, units, ingredient name separated)?+
Not currently. The get_recipe_details response provides recipe data including instructions and nutrition, but ingredients are not broken into discrete machine-readable fields like quantity, unit, and name. You can fork this API on Parse and revise it to add a structured ingredient parser endpoint.
How does pagination work in `search_recipes`, and are there limits on how deep you can paginate?+
Pagination uses the offset parameter in increments of 24. The has_next boolean indicates whether another page exists. Allrecipes imposes its own limits on how many results are accessible for a given query, so very high offsets may return empty result sets even when has_next was previously true.
Page content last updated . Spec covers 3 endpoints from allrecipes.com.
Related APIs in Food DiningSee all →
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.
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.
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.
tasty.co API
Search and discover Tasty.co recipes by ingredients or cuisine, then access detailed cooking instructions, ingredient lists, and video guides for each dish. Browse popular recipes and get pro cooking tips to perfect your meals.
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.
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.
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.
Allrecipes API – Recipes, Nutrition & Reviews · Parse