# Deliveroo — 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 for restaurants and retrieve menus from Deliveroo UK. Look up restaurants by keyword and postcode, or fetch full menu details for any Deliveroo restaurant by URL.

**Category:** Food & Dining | **Website:** [deliveroo.co.uk/](https://deliveroo.co.uk/) | **Docs:** [parse.bot/marketplace/74a53509-3087-4292-9dd5-bf0b1ddd3646/deliveroo-co-uk-api](https://parse.bot/marketplace/74a53509-3087-4292-9dd5-bf0b1ddd3646/deliveroo-co-uk-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-deliveroo-co-uk-api-74a53509/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_restaurant_menu

Get the menu for a restaurant by its Deliveroo URL. Returns restaurant information and a list of menu items with names, descriptions, and images. Prices may not be available for all items.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full Deliveroo restaurant menu URL (e.g. https://deliveroo.co.uk/menu/London/soho/restaurant-name) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-deliveroo-co-uk-api-74a53509/get_restaurant_menu \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_restaurants

Search for restaurants by keyword and postcode. Returns a list of restaurants matching the search query near the given postcode, with details including name, menu URL, image, and a description with rating, distance, and delivery time.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `postcode` | string | Yes | UK postcode to search near (e.g. EC4R 3TE) |
| `query` | string | Yes | Search keyword (e.g. pizza, burger, sushi) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-deliveroo-co-uk-api-74a53509/search_restaurants \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"postcode":"<string>","query":"<string>"}'
```
