Discover/BBC Good Food API
live

BBC Good Food APIbbcgoodfood.com

Search BBC Good Food recipes, retrieve full ingredient lists, cooking instructions, nutrition data, and user reviews via a structured JSON API.

Endpoint health
verified 5d ago
search_recipes
get_recipe_details
get_recipe_reviews
3/3 passing latest checkself-healing
Endpoints
3
Updated
21d ago

What is the BBC Good Food API?

The BBC Good Food API gives developers structured access to one of the UK's largest recipe databases across 3 endpoints. Use search_recipes to find dishes by keyword with pagination, get_recipe_details to pull full ingredient lists, step-by-step instructions, nutrition per serving, and author data for any recipe URL, and get_recipe_reviews to retrieve user comments, tips, and ratings by recipe ID.

Try it
Page number for pagination
Search keyword (e.g. 'lasagne', 'chicken korma')
api.parse.bot/scraper/abc12726-b22a-45d6-b521-13bf5ded8c33/<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/abc12726-b22a-45d6-b521-13bf5ded8c33/search_recipes?page=1&query=lasagne' \
  -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 bbcgoodfood-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.

"""BBC Good Food — search recipes, drill into details, read reviews."""
from parse_apis.bbc_good_food_api import BBCGoodFood, RecipeNotFound

client = BBCGoodFood()

# Search for recipes — limit caps total items fetched across pages.
for summary in client.recipes.search(query="lasagne", limit=5):
    print(summary.title, summary.difficulty, summary.prep_time)

# Drill into one result for full details (ingredients, instructions, nutrition).
summary = client.recipes.search(query="chicken korma", limit=1).first()
if summary:
    recipe = summary.details()
    print(recipe.title, recipe.serves, recipe.difficulty)
    for ing in recipe.ingredients[:3]:
        print(ing.text, ing.quantity)

    # Walk the recipe's reviews sub-resource.
    for review in recipe.reviews.list(limit=3):
        print(review.author, review.body[:60] if review.body else "")

# Typed error handling for a bad URL.
try:
    bad = client.recipes.search(query="nonexistent-xyzzy-recipe", limit=1).first()
    if bad:
        bad.details()
except RecipeNotFound as exc:
    print(f"Recipe gone: {exc.url}")

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

Full-text search over BBC Good Food recipes. Returns paginated recipe summaries including title, rating, difficulty, and prep time. The site does not expose total/page metadata for all queries.

Input
ParamTypeDescription
pageintegerPage number for pagination
queryrequiredstringSearch keyword (e.g. 'lasagne', 'chicken korma')
Response
{
  "type": "object",
  "fields": {
    "page": "integer or null - current page number",
    "items": "array of recipe summary objects with id, title, url, description, rating, image, author, prep_time, difficulty",
    "total": "integer or null - total number of results",
    "page_count": "integer or null - total number of pages"
  },
  "sample": {
    "data": {
      "page": null,
      "items": [
        {
          "id": "226624",
          "url": "https://www.bbcgoodfood.com/recipes/creamy-courgette-lasagne",
          "image": {
            "alt": "Courgette lasagne",
            "url": "https://images.immediate.co.uk/production/volatile/sites/30/2022/03/Creamy-courgette-lasagne-e63aa0c.jpg"
          },
          "title": "Creamy courgette lasagne",
          "author": "Good Food team",
          "rating": {
            "ratingCount": 734,
            "ratingValue": 4.6
          },
          "prep_time": "30 mins",
          "difficulty": "Easy",
          "description": "<p>Serve this quick, creamy courgette & ricotta lasagne</p>"
        }
      ],
      "total": null,
      "page_count": null
    },
    "status": "success"
  }
}

About the BBC Good Food API

Recipe Search

The search_recipes endpoint accepts a query string (e.g. 'chicken korma' or 'lasagne') and an optional page integer for pagination. Each result in the items array includes a recipe id, title, url, description, rating, image, author, prep_time, and difficulty. The response also returns total result count and page_count so you can walk all pages programmatically.

Recipe Details

get_recipe_details takes a full BBC Good Food recipe URL and returns a detailed object. Notably, the times field exposes both preparation and cooking times in seconds, nutrition is an array of per-serving entries each with label, value, and unit, and authors is an array of contributor objects with name, bio, and url. The description field is returned as HTML. The serves field gives the stated yield as a string.

User Reviews

get_recipe_reviews accepts the numeric entity_id from either the id field in search_recipes results or the id field in get_recipe_details. Results are paginated at 20 reviews per page. Each review object in the reviews array includes id, type (distinguishing comments, tips, and questions), body, author, created timestamp, likes, and replies.

Reliability & maintenanceVerified

The BBC Good Food API is a managed, monitored endpoint for bbcgoodfood.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bbcgoodfood.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 bbcgoodfood.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
5d 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 tool filtered by difficulty and prep_time from search_recipes results
  • Populate a meal-planning app with full ingredient lists and nutrition data from get_recipe_details
  • Aggregate user tips and comments per dish using the type field in get_recipe_reviews
  • Compare calorie and macro values across recipes using the nutrition array
  • Attribute recipes correctly by pulling author name, bio, and URL from the authors array
  • Power a cooking assistant that surfaces step-by-step instructions and serving sizes
  • Track average ratings across a keyword category using the rating field in search_recipes
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 BBC Good Food have an official developer API?+
BBC Good Food does not publish a public developer API or documented REST endpoints for third-party use. This Parse API provides structured access to the same recipe and review data.
What does get_recipe_reviews return beyond the review text?+
Each entry in the reviews array includes a type field that distinguishes between comments, tips, and questions. It also returns likes counts, a replies array for threaded responses, the author object, and a created timestamp. Pagination is fixed at 20 reviews per page using the page parameter.
Does the API return full step-by-step cooking instructions from get_recipe_details?+
The get_recipe_details endpoint returns title, description, ingredients context, times, nutrition, serves, difficulty, and authors. If step-by-step method instructions are not listed in the returns schema above, they are not currently guaranteed fields. The API covers recipe metadata and nutrition fully. You can fork it on Parse and revise to add an explicit instructions field if the source page exposes it.
Is there a way to browse recipes by category or cuisine type rather than keyword?+
Currently the API supports keyword search via the query parameter in search_recipes. Category or cuisine-based browsing endpoints are not included. You can fork it on Parse and revise to add a category browsing endpoint.
Are there any coverage limitations I should be aware of?+
The API covers publicly accessible BBC Good Food recipe pages. Recipes behind any login requirement, regional paywalls, or content only surfaced through BBC account features are not exposed. Nutrition data is returned per serving as presented on the source page and may not be available for every recipe.
Page content last updated . Spec covers 3 endpoints from bbcgoodfood.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.
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.
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.
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.
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.
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.
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.