# Serious Eats — 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 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.

**Category:** Food & Dining | **Website:** [seriouseats.com/](https://seriouseats.com/) | **Docs:** [parse.bot/marketplace/1c6c0829-5743-49ca-8cb6-8f0be3c5000f/seriouseats-com-api](https://parse.bot/marketplace/1c6c0829-5743-49ca-8cb6-8f0be3c5000f/seriouseats-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-seriouseats-com-api-1c6c0829/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_recipe

Retrieve full recipe details from a Serious Eats recipe URL. Extracts ingredients, step-by-step instructions, prep/cook/total times, ratings, user reviews, tips, and photos from structured JSON-LD and HTML. Returns null for fields not present on the page. Not all Serious Eats URLs are recipe pages — non-recipe articles will return null/empty fields.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full Serious Eats recipe URL (e.g. 'https://www.seriouseats.com/the-food-lab-best-chocolate-chip-cookie-recipe'). |

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

### search

Full-text search over Serious Eats recipes by keyword. Returns matching recipe titles, URLs, and thumbnail images. Paginates as a single page up to the requested limit. Multi-word queries are supported.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of search results to return. |
| `query` | string | Yes | Search keyword or phrase (e.g. 'chicken', 'chocolate cake'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-seriouseats-com-api-1c6c0829/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```
