# Thefork — 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 check real-time table availability to find and book your next dining reservation. Get detailed information about restaurants including menus, pricing, and reservation slots all in one place.

**Category:** Food & Dining | **Website:** [www.thefork.com/](https://www.thefork.com/) | **Docs:** [parse.bot/marketplace/8eb50ec6-9ed8-4ba2-bc2b-127f1db47314/thefork-com-api](https://parse.bot/marketplace/8eb50ec6-9ed8-4ba2-bc2b-127f1db47314/thefork-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-thefork-com-api-8eb50ec6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### check_availability

Check available time slots for table reservation at a restaurant on a specific date for a given party size. Returns open slots grouped by meal service (LUNCH, DINER), each with any applicable discount offer. Does not place or hold a booking.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | Yes | Date to check availability for, in ISO format YYYY-MM-DD (e.g. 2026-07-16). |
| `party_size` | integer | No | Number of guests (1-20). |
| `restaurant_id` | string | Yes | Numeric restaurant ID from search_restaurants results (e.g. 35738). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thefork-com-api-8eb50ec6/check_availability \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>","party_size":"<integer>","restaurant_id":"<string>"}'
```

### get_restaurant

Retrieve full details for a single restaurant by its numeric ID. Returns name, cuisine, address, average price, rating, review count, photos, and the booking page URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `restaurant_id` | string | Yes | Numeric restaurant ID from search_restaurants results (e.g. 35738). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thefork-com-api-8eb50ec6/get_restaurant \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"restaurant_id":"<string>"}'
```

### search_restaurants

Search restaurants by name on TheFork. Results are biased toward the specified city when provided. Returns restaurant summaries including booking page URLs. Each result carries a numeric restaurant ID usable with get_restaurant and check_availability.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City name to bias and filter results (e.g. Paris, London, Rome). When omitted, results default to Paris. |
| `name` | string | Yes | Restaurant name or partial name to search for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thefork-com-api-8eb50ec6/search_restaurants \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","name":"<string>"}'
```
