# Akis Petretzikis — 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 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.

**Category:** Food & Dining | **Website:** [akispetretzikis.com/](https://akispetretzikis.com/) | **Docs:** [parse.bot/marketplace/bf52e0d0-fbd7-488d-9971-ebe10d8e6c6a/akispetretzikis-com-api](https://parse.bot/marketplace/bf52e0d0-fbd7-488d-9971-ebe10d8e6c6a/akispetretzikis-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-akispetretzikis-com-api-bf52e0d0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

List available recipe categories organized by type (meal_type, occasion, ingredient, cuisine, method). Use category IDs as the category_id filter in search_recipes. A single call returns all category groups.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `lang` | string | No | Language code: en or el |

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

### get_recipe_details

Retrieve full details for a specific recipe by its ID, including ingredients, instructions, nutrition, equipment, and media assets. Returns a single recipe object.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `lang` | string | No | Language code: en or el |
| `recipe_id` | integer | Yes | The unique ID of the recipe (obtain from search_recipes results) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-akispetretzikis-com-api-bf52e0d0/get_recipe_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"lang":"<string>","recipe_id":"<integer>"}'
```

### search_recipes

Search for recipes with optional filtering by category, page, and limit. Returns paginated results ordered by recency. If no query is provided, returns the latest recipes. Paginates via page number; each page returns up to `limit` recipe summaries.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | integer | No | Filter by category ID (obtain from get_categories endpoint) |
| `lang` | string | No | Language code: en or el |
| `limit` | integer | No | Number of results per page |
| `page` | integer | No | Page number for pagination (1-based) |
| `query` | string | No | Search keyword. When omitted, returns the latest recipes. |

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