# Mdblist — 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 movies from MDBList while filtering and sorting by your preferred criteria, then compare ratings from IMDb, Trakt, TMDb, Letterboxd, Rotten Tomatoes, Metacritic, and other sources all in one place. Find the perfect film by accessing comprehensive movie data and user scores across multiple entertainment platforms.

**Category:** Entertainment | **Website:** [mdblist.com/movies/](https://mdblist.com/movies/) | **Docs:** [parse.bot/marketplace/c013275c-2101-49b1-b781-3a5d27cb283a/mdblist-com-api](https://parse.bot/marketplace/c013275c-2101-49b1-b781-3a5d27cb283a/mdblist-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-mdblist-com-api-c013275c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_movies

Search and list movies with configurable sort order and optional title filter. Returns paginated results including aggregate scores and ratings from IMDb, Trakt, TMDb, Letterboxd, Rotten Tomatoes, Metacritic, and RogerEbert. Results are auto-iterated across pages (48 movies per page). The sort_order 'asc' returns highest values first for rating-based sorts.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Zero-based page number for pagination. Each page returns up to 48 movies. |
| `sort` | string | No | Sort field for ordering results. |
| `sort_order` | string | No | Sort direction. 'asc' returns highest values first for rating-based sorts, 'desc' returns lowest first. |
| `title` | string | No | Filter movies by title or IMDb ID. Partial matches supported. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mdblist-com-api-c013275c/list_movies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","sort":"<string>","sort_order":"<string>","title":"<string>"}'
```
