# The Infatuation — 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.

> Access restaurant reviews, ratings, and guides from The Infatuation. Search by keyword and location, browse cities and neighborhoods, and retrieve detailed review data including cuisine type, address, pricing, and editorial ratings.

**Category:** Food & Dining | **Website:** [theinfatuation.com/](https://theinfatuation.com/) | **Docs:** [parse.bot/marketplace/6ce0e2d7-34cf-4318-98c4-73b7cc5e60ef/theinfatuation-com-api](https://parse.bot/marketplace/6ce0e2d7-34cf-4318-98c4-73b7cc5e60ef/theinfatuation-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-theinfatuation-com-api-6ce0e2d7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### browse_restaurants_by_city

Browse all restaurants and guides in a specific city. Returns paginated results including both reviews and guides. Pagination uses a cursor-based scheme.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `after` | string | No | Pagination cursor from pageInfo.endpageDirectionCode of a previous response. |
| `city` | string | Yes | City slug identifying the market to browse (e.g. 'new-york', 'los-angeles', 'chicago'). |
| `limit` | integer | No | Number of results to return per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-theinfatuation-com-api-6ce0e2d7/browse_restaurants_by_city \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"after":"<string>","city":"<string>","limit":"<integer>"}'
```

### get_cities_list

Get the list of all cities covered by The Infatuation. Returns city names, URL paths, and identifiers for every market in their coverage area.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-theinfatuation-com-api-6ce0e2d7/get_cities_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_city_neighborhoods

Get the list of neighborhoods and their identifiers for a specific city. Useful for filtering restaurant searches by neighborhood. Returns all neighborhoods within the specified city market.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | Yes | City slug identifying the market (e.g. 'new-york', 'los-angeles', 'chicago'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-theinfatuation-com-api-6ce0e2d7/get_city_neighborhoods \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>"}'
```

### get_restaurant_review

Get detailed review information for a specific restaurant, including the full review text, rating, address, cuisine, and publisher information. Returns structured JSON-LD review data extracted from the restaurant's review page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | Yes | City slug where the restaurant is located (e.g. 'new-york', 'los-angeles'). |
| `slug` | string | Yes | Restaurant slug from search results (e.g. 'thai-diner', 'via-carota'). Available as slugName in search_restaurants or browse_restaurants_by_city results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-theinfatuation-com-api-6ce0e2d7/get_restaurant_review \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","slug":"<string>"}'
```

### search_restaurants

Search for reviewed restaurants by keyword and location. Returns paginated results from The Infatuation's review database. Each result includes place details, rating, categories, cuisines, neighborhoods, and contributors. Pagination uses a cursor-based scheme.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `after` | string | No | Pagination cursor from pageInfo.endpageDirectionCode of a previous response. |
| `limit` | integer | No | Number of results to return per page. |
| `location` | string | Yes | City slug identifying the market to search within (e.g. 'new-york', 'los-angeles', 'chicago'). |
| `query` | string | No | Search keyword to filter restaurants (e.g. 'pizza', 'sushi', 'brunch'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-theinfatuation-com-api-6ce0e2d7/search_restaurants \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"after":"<string>","limit":"<integer>","location":"<string>","query":"<string>"}'
```
