Discover/Epicurious API
live

Epicurious APIepicurious.com

Access Epicurious recipe details, search results, and user reviews via API. Returns ingredients, instructions, ratings, tags, and paginated review data.

Endpoint health
verified 23h ago
search_recipes
get_recipe_details
get_recipe_reviews
3/3 passing latest checkself-healing
Endpoints
3
Updated
22d ago

What is the Epicurious API?

The Epicurious API exposes 3 endpoints covering recipe search, full recipe details, and user reviews from Epicurious.com. The get_recipe_details endpoint returns structured ingredients, step-by-step instructions, timing information, and a story_id that links directly to the get_recipe_reviews endpoint. Search results from search_recipes include ratings, review counts, content type classification, and thumbnail URLs.

Try it
Page number for pagination.
Search keyword (e.g., 'chicken', 'pasta', 'chocolate cake')
api.parse.bot/scraper/5845300a-1ec6-4b6c-89a0-f68f4d5daba0/<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/5845300a-1ec6-4b6c-89a0-f68f4d5daba0/search_recipes?page=1&query=chicken' \
  -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 epicurious-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.

"""Walkthrough: Epicurious recipe search, detail drill-down, and reviews."""
from parse_apis.epicurious_api import Epicurious, Recipe, RecipeSummary, RecipeNotFound

client = Epicurious()

# Search for chicken recipes — limit caps total items fetched across pages.
for recipe in client.recipesummaries.search(query="chicken", limit=5):
    print(recipe.title, recipe.rating, recipe.url)

# Drill into the first result for full details (ingredients, instructions, times).
summary = client.recipesummaries.search(query="pasta", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.title, detail.yield_, detail.times)
    for group in detail.ingredients:
        for ing in group.items:
            print(ing.text)

# Alternatively, fetch a recipe directly by URL.
recipe = client.recipes.get(url="https://www.epicurious.com/recipes/food/views/quick-chicken-piccata")
print(recipe.title, recipe.story_id, recipe.review_count)

# Browse reviews on a recipe — paginated automatically.
for review in recipe.reviews.list(limit=3):
    print(review.author.name, review.rating, review.body[:60])

# Handle not-found errors gracefully.
try:
    client.recipes.get(url="https://www.epicurious.com/recipes/food/views/nonexistent-recipe-xyz")
except RecipeNotFound as exc:
    print(f"Recipe gone: {exc}")

print("exercised: recipesummaries.search / summary.details / recipes.get / recipe.reviews.list")
All endpoints · 3 totalmissing one? ·

Search for recipes on Epicurious. Returns a paginated list of recipes with titles, URLs, descriptions, ratings, and content types. Results may include recipes, articles, galleries, and videos.

Input
ParamTypeDescription
pageintegerPage number for pagination.
queryrequiredstringSearch keyword (e.g., 'chicken', 'pasta', 'chocolate cake')
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "query": "string, the search query used",
    "results": "array of result objects with title, url, description, rating, review_count, thumbnail, type, and tags",
    "total_pages": "integer, total number of pages available",
    "total_results": "integer, total number of results matching the query"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "chicken",
      "results": [
        {
          "url": "https://www.epicurious.com/recipes/food/views/quick-chicken-piccata",
          "tags": [],
          "type": "recipe",
          "title": "Chicken Piccata",
          "rating": 4.63,
          "thumbnail": null,
          "description": "Chicken piccata is a classic Italian dish made from pounded flat chicken breasts dredged in all-purpose flour, pan-fried, and topped with a lemony white wine and caper sauce.",
          "review_count": 26
        }
      ],
      "total_pages": 403,
      "total_results": 3218
    },
    "status": "success"
  }
}

About the Epicurious API

Recipe Search

The search_recipes endpoint accepts a query string (e.g., 'chicken', 'chocolate cake') and an optional page integer for pagination. Each result object in the results array includes title, url, description, rating, review_count, thumbnail, type, and tags. The type field distinguishes between recipes, articles, galleries, and videos, so you can filter to only recipe-type results. The response also exposes total_results and total_pages for building paginated flows.

Recipe Details

Pass any Epicurious recipe URL to get_recipe_details to retrieve the full record. The ingredients field is an array of group objects — each group has a group label and an items array where every item carries text, amount, unit, and item fields, making it straightforward to parse structured ingredient data. The instructions field follows the same grouped structure with steps arrays. Additional fields include times (an object keyed by label such as activeTime and totalTime), yield, images, rating, tags, and description. The response also returns a story_id string required by the reviews endpoint.

User Reviews

The get_recipe_reviews endpoint takes a story_id obtained from get_recipe_details and returns an array of reviews, each with id, body, created_at, rating, likes, and an author object containing name and location. Pagination uses cursor-based navigation: the page_info object exposes has_next_page and end_cursor, and you pass end_cursor as the after parameter to retrieve the next batch. The optional limit parameter controls how many reviews are returned per request.

Reliability & maintenanceVerified

The Epicurious API is a managed, monitored endpoint for epicurious.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when epicurious.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 epicurious.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
23h 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 recommendation feed filtered by Epicurious rating and tag fields from search results
  • Aggregate structured ingredient lists across multiple recipes to generate automated grocery lists
  • Analyze user review sentiment and location data from the author field to study regional food preferences
  • Extract activeTime and totalTime from recipe details to surface quick-prep meals under a time threshold
  • Sync Epicurious recipe tags and descriptions into a personal cookbook or meal planning application
  • Track recipe rating changes over time by periodically querying get_recipe_details for specific URLs
  • Collect paginated review datasets for training recipe quality or preference models
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 Epicurious have an official developer API?+
Epicurious does not publish a public developer API or documented data access program for third-party developers.
What does the `get_recipe_details` endpoint return for ingredients, and how are they structured?+
Ingredients are returned as an array of group objects. Each group has a group string label (useful for recipes with sections like 'For the sauce') and an items array. Every item includes text (the full ingredient line), amount, unit, and item as separate parsed fields, so you don't need to parse the ingredient string yourself.
How does pagination work in `get_recipe_reviews`?+
The endpoint uses cursor-based pagination rather than page numbers. Each response includes a page_info object with has_next_page (boolean) and end_cursor (a timestamp string or null). Pass the end_cursor value as the after parameter in your next request to retrieve the following page of reviews.
Does the API return nutritional information for recipes?+
Not currently. The get_recipe_details response covers ingredients, instructions, times, tags, ratings, images, and yield, but does not include a nutrition facts field. You can fork this API on Parse and revise it to add a nutritional data endpoint if that field is available on the recipe page.
Can I retrieve a list of recipes by category or cuisine tag without a text search?+
The search_recipes endpoint requires a query string, so browsing by category or cuisine without a keyword is not directly supported. Search results do include tags on each result object, which you can use to filter client-side. You can fork this API on Parse and revise it to add a category or tag-browse endpoint.
Page content last updated . Spec covers 3 endpoints from epicurious.com.
Related APIs in Food DiningSee all →
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.
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.
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.
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.
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.
ubereats.com API
Search for restaurants by cuisine or location and browse their menus, prices, ratings, and delivery times. Get detailed information about specific restaurants and menu items to find exactly what you want to order.