# Bbcgoodfood — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> 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.

**Category:** Food & Dining | **Website:** [bbcgoodfood.com/](https://bbcgoodfood.com/) | **Docs:** [parse.bot/marketplace/39990640-2c61-4bd1-ac88-22970544cf5c/bbcgoodfood-com-api](https://parse.bot/marketplace/39990640-2c61-4bd1-ac88-22970544cf5c/bbcgoodfood-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-bbcgoodfood-com-api-39990640/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_recipe_details

Fetch full details for a single recipe by its URL. Returns ingredients, step-by-step instructions, nutritional information, cooking times, and author details. The URL must be a valid bbcgoodfood.com recipe page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the recipe page (e.g. https://www.bbcgoodfood.com/recipes/chicken-korma) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bbcgoodfood-com-api-39990640/get_recipe_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_recipe_reviews

Retrieve user reviews, comments, tips, and questions for a specific recipe using its numeric ID. Returns paginated results with 20 reviews per page. The entity_id comes from search_recipes items[*].id or get_recipe_details id field.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `entity_id` | string | Yes | The recipe entity ID (numeric ID from search_recipes items[*].id or get_recipe_details id field) |
| `page` | integer | No | Page number for pagination |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bbcgoodfood-com-api-39990640/get_recipe_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"entity_id":"<string>","page":"<integer>"}'
```

### search_recipes

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination |
| `query` | string | Yes | Search keyword (e.g. 'lasagne', 'chicken korma') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bbcgoodfood-com-api-39990640/search_recipes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
