# Movie Douban — 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 Douban's extensive database, view detailed information like ratings and reviews, and browse films by genre or popularity. Filter and sort movies to find exactly what you're looking for based on your preferences.

**Category:** Entertainment | **Website:** [movie.douban.com/](https://movie.douban.com/) | **Docs:** [parse.bot/marketplace/ebab89be-612b-47a7-858c-5bf153ae5e01/movie-douban-com-api](https://parse.bot/marketplace/ebab89be-612b-47a7-858c-5bf153ae5e01/movie-douban-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-movie-douban-com-api-ebab89be/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### explore_movies

Browse and filter movies by genre tag and sort order. Returns paginated movie listings. Use start/count for pagination. When tag is omitted, returns a general recommendation list.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `count` | integer | No | Number of results per page. Maximum 50. |
| `sort` | string | No | Sort order for results. |
| `start` | integer | No | Pagination offset (0-based). |
| `tag` | string | No | Genre or category tag to filter by (e.g. '喜剧', '动作', '爱情', '科幻', '悬疑', '恐怖', '动画'). When omitted, returns general recommendations. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-movie-douban-com-api-ebab89be/explore_movies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"count":"<integer>","sort":"<string>","start":"<integer>","tag":"<string>"}'
```

### get_movie_details

Get detailed information for a specific movie by its Douban movie ID. Returns full metadata including title, year, genres, directors, actors, rating, plot summary, and more.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `movie_id` | string | Yes | Douban movie ID (numeric string, e.g. '1292052' for The Shawshank Redemption). Obtainable from search_movies or explore_movies results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-movie-douban-com-api-ebab89be/get_movie_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"movie_id":"<string>"}'
```

### search_movies

Search for movies by keyword. Returns paginated results with movie ID, title, year, rating, and basic metadata. Use start/count for pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `count` | integer | No | Number of results per page. Maximum 50. |
| `query` | string | Yes | Search keyword (Chinese or English movie title, actor name, etc.) |
| `start` | integer | No | Pagination offset (0-based). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-movie-douban-com-api-ebab89be/search_movies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"count":"<integer>","query":"<string>","start":"<integer>"}'
```
