# Maoyan (m.maoyan.com) — 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.

> Discover currently showing and upcoming movies with detailed information including ratings, cast, directors, release dates, and posters from Maoyan Movies. Search for specific movie details to stay updated on the latest cinema releases and find comprehensive film information all in one place.

**Category:** Entertainment | **Website:** [m.maoyan.com/](https://m.maoyan.com/) | **Docs:** [parse.bot/marketplace/56a80a57-56f6-4465-9029-877f8b42a0a9/m-maoyan-com-api](https://parse.bot/marketplace/56a80a57-56f6-4465-9029-877f8b42a0a9/m-maoyan-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-m-maoyan-com-api-56a80a57/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### coming_soon

Retrieve the list of upcoming movie releases, optionally filtered by city. Returns films scheduled for future release with basic metadata grouped by release date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city_id` | string | No | City ID for location-specific release schedules. 1=Beijing. |
| `limit` | integer | No | Maximum number of upcoming movies to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-m-maoyan-com-api-56a80a57/coming_soon \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city_id":"<string>","limit":"<integer>"}'
```

### movie_detail

Retrieve comprehensive details for a single movie by its ID. Returns extended metadata including director, full cast, duration, synopsis, language, photos, trailer URL, and score distribution. The movie_id can be obtained from now_showing or coming_soon results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `movie_id` | string | Yes | Maoyan movie ID, obtainable from the id field in now_showing or coming_soon results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-m-maoyan-com-api-56a80a57/movie_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"movie_id":"<string>"}'
```

### now_showing

Retrieve the list of movies currently playing in Chinese theaters. Returns all films with basic metadata including title, score, poster, cast, release date, and showtime counts. No parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-m-maoyan-com-api-56a80a57/now_showing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
