# Letterboxd — 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 movies and discover detailed information about films including cast, ratings, and reviews, while accessing user profiles and viewing their watch lists and ratings. Build personalized movie discovery tools that let you find films based on user preferences and track what others are watching on Letterboxd.

**Category:** Entertainment | **Website:** [letterboxd.com/](https://letterboxd.com/) | **Docs:** [parse.bot/marketplace/9229cdd2-dc02-439b-a767-fdf366879365/letterboxd-com-api](https://parse.bot/marketplace/9229cdd2-dc02-439b-a767-fdf366879365/letterboxd-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-letterboxd-com-api-9229cdd2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_film

Retrieve full details for a single film by its slug, including title, year, director, runtime in minutes, average community rating (out of 5), and canonical URL. Returns input_not_found when the slug does not match any film.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Film slug from Letterboxd URL path (e.g. 'inception', 'the-dark-knight'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-letterboxd-com-api-9229cdd2/get_film \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_user_profile

Retrieve a Letterboxd user's public profile including bio, film stats, favorite films, first page of watchlist and liked films, and full follower list. Watchlist and likes return the first page (up to ~28 items); watchlist_count reflects the total. Returns input_not_found when the username does not exist.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `username` | string | Yes | Letterboxd username (e.g. 'bug39'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-letterboxd-com-api-9229cdd2/get_user_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"username":"<string>"}'
```

### search_films

Full-text search over Letterboxd's film catalog. Returns title, year, director, URL, and slug for each match. Results are auto-iterated across pages; each page returns up to 20 films. Films without a listed director return null for that field.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results. |
| `query` | string | Yes | Search query to match against film titles. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-letterboxd-com-api-9229cdd2/search_films \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
