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

**Category:** Food & Dining | **Website:** [tasty.co/](https://tasty.co/) | **Docs:** [parse.bot/marketplace/21892b8c-40c7-4e2b-af41-b5dcfe96a82e/tasty-co-api](https://parse.bot/marketplace/21892b8c-40c7-4e2b-af41-b5dcfe96a82e/tasty-co-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-tasty-co-api-21892b8c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_popular_recipes

Get popular/trending recipes from Tasty.co. Returns a curated carousel of top recipes plus categorized assorted recipe collections.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tasty-co-api-21892b8c/get_popular_recipes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_recipe_details

Get detailed information for a specific recipe by its URL slug. Returns structured data including title, description, ingredients list, step-by-step instructions, cooking times, video information, nutrition, and tags.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The recipe's URL slug (e.g. 'original-orange-chicken-by-panda-express', 'the-best-fudgy-brownies'). |

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

### get_recipe_tips

Get user tips and reviews for a specific recipe, sorted by upvotes descending. Supports offset-based pagination. Each tip includes author name, tip body text, upvote count, optional photo, and last updated timestamp.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `offset` | integer | No | Offset for pagination (number of tips to skip). |
| `recipe_id` | integer | Yes | The recipe's numeric ID. Obtainable from search_recipes or get_popular_recipes results (e.g. 3383 for orange chicken, 1217 for brownies). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tasty-co-api-21892b8c/get_recipe_tips \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"offset":"<integer>","recipe_id":"<integer>"}'
```

### search_recipes

Full-text search over Tasty.co recipes by keyword. Returns recipe summaries with names, slugs, IDs, thumbnails, tags, and cooking times. Supports offset-based pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results to return per page. |
| `offset` | integer | No | Offset for pagination (number of items to skip). |
| `query` | string | Yes | Search keyword or phrase (e.g. 'chicken', 'chocolate cake', 'pasta'). |

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