# Allrecipes — 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 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.

**Category:** Food & Dining | **Website:** [allrecipes.com/](https://allrecipes.com/) | **Docs:** [parse.bot/marketplace/2f7bcd41-4314-4cc8-8c1c-6f74b5146a07/allrecipes-com-api](https://parse.bot/marketplace/2f7bcd41-4314-4cc8-8c1c-6f74b5146a07/allrecipes-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-allrecipes-com-api-2f7bcd41/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_recipe_details

Fetch full details for a single recipe by URL. Returns structured data extracted from JSON-LD including title, author, ingredients list, step-by-step instructions, nutritional breakdown, aggregate rating, and user reviews. The URL must point to an allrecipes.com recipe page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the recipe page (e.g. 'https://www.allrecipes.com/recipe/223042/chicken-parmesan/') or path starting with / |

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

### list_recipes_a_z

List all recipe categories from the AllRecipes A-Z directory. Returns an alphabetically organized collection of category links (label and URL) suitable for browsing or discovering recipe collections.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-allrecipes-com-api-2f7bcd41/list_recipes_a_z \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_recipes

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `offset` | integer | No | Results offset for pagination (increments of 24) |
| `query` | string | Yes | Search keyword (e.g. 'chicken', 'lasagna', 'pasta') |

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