Discover/maoyan.com API
live

maoyan.com APIwww.maoyan.com

Access Maoyan movie data via API: now-showing and coming-soon listings, detailed movie info, cinema availability, and filter options for Chinese theaters.

Endpoints
4
Updated
1mo ago
Try it
Maximum number of movies to return.
Pagination offset for now-showing movies (applies to show_type=1 only).
City ID (e.g. 1 for Beijing, 59 for Chengdu).
1 for now showing, 2 for coming soon.
api.parse.bot/scraper/e9bfd954-21ee-4c0c-8ba9-f8fe2c8276d5/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/e9bfd954-21ee-4c0c-8ba9-f8fe2c8276d5/list_movies?limit=5&city_id=1&show_type=2' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

List movies currently showing in theaters or coming soon. Returns movie names, scores, stars, release dates, poster images, and showing info. For now-showing (show_type=1), returns paginated results in batches of up to 12 per offset page. For coming-soon (show_type=2), returns all upcoming movies up to the limit.

Input
ParamTypeDescription
limitintegerMaximum number of movies to return.
offsetintegerPagination offset for now-showing movies (applies to show_type=1 only).
city_idstringCity ID (e.g. 1 for Beijing, 59 for Chengdu).
show_typestring1 for now showing, 2 for coming soon.
Response
{
  "type": "object",
  "fields": {
    "count": "integer number of movies returned in this response",
    "total": "integer total number of movies available",
    "movies": "array of movie objects with id, name, poster, score, stars, release_date, show_info",
    "movie_ids": "array of all movie IDs (now_showing only)",
    "show_type": "string indicating 'now_showing' or 'coming_soon'"
  },
  "sample": {
    "data": {
      "count": 5,
      "total": 60,
      "movies": [
        {
          "id": 1528954,
          "name": "消失的人",
          "score": 0,
          "stars": "郑恺,刘浩存,邱泽",
          "poster": "https://p0.pipi.cn/mediaplus/friday_image_fe/e429583d494b81374c1fae82faddb2ae3dbf5.jpg?imageMogr2/quality/80",
          "version": "",
          "pre_show": false,
          "show_info": "今天282家影院放映2094场",
          "wish_count": 88602,
          "release_date": "2026-05-01"
        }
      ],
      "offset": 0,
      "movie_ids": [
        1528954,
        1575885,
        1525209
      ],
      "show_type": "now_showing"
    },
    "status": "success"
  }
}

About the maoyan.com API

This API exposes 4 endpoints covering Maoyan's Chinese movie ecosystem, returning now-showing and coming-soon film listings, full movie details, and cinema availability data. The list_movies endpoint alone returns up to 12 fields per movie object including score, cast, poster URL, release date, and show info. Together, the endpoints let you query across cities, filter cinemas by district, and retrieve trailers and photo galleries for specific titles.

Movie Listings

The list_movies endpoint returns paginated movie data for either now-showing (show_type=1) or coming-soon (show_type=2) films. Each movie object includes id, name, poster, score, stars, release_date, and show_info. Results can be scoped to a specific city using city_id (e.g. 1 for Beijing, 59 for Chengdu). For now-showing titles, the response also includes a movie_ids array covering all available film IDs in the city. Pagination is controlled via offset and limit, with up to 12 results per page for now-showing queries.

Movie Details

get_movie_detail accepts a movie_id from list results and returns an expanded record: director, category (genre tags), duration in minutes, wish_count, video_url for the trailer, and a photos array of image URLs. Score and cast fields (stars) are also present, giving enough data to build a full movie profile page without additional requests.

Cinema Listings and Filters

list_cinemas returns up to 20 cinemas per request showing a given movie_id in a city. Each cinema object includes name, address, sell_price, distance, allow_refund, has_snack, vip_tag, and show_times. Use district_id — obtained from get_cinema_filters — to narrow results to a specific urban district. Pagination via offset is supported, though the upstream source caps results at 20 per page.

get_cinema_filters provides the full set of filterable dimensions for a movie/city combination: brand, district, hallType, service, subway, and timeRanges. Each filter category carries a name and an options array, which feeds directly into district_id values for list_cinemas.

Common use cases
  • Build a city-specific now-showing listings page using list_movies with city_id and show_type=1
  • Display a movie detail page with trailer, cast, director, genre, and photo gallery from get_movie_detail
  • Find cinemas near a district screening a given film using list_cinemas with district_id from get_cinema_filters
  • Track wish_count across coming-soon titles over time to gauge pre-release audience interest
  • Aggregate sell_price data from list_cinemas to compare ticket pricing across theaters in a city
  • Surface refund policy and snack availability per cinema using allow_refund and has_snack fields
  • Populate a movie search UI with poster images, scores, and release dates from list_movies
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Maoyan have an official public developer API?+
Maoyan does not publish a documented public developer API for third-party use. The platform is a consumer-facing Chinese ticketing and movie discovery site with no official API program listed on their website.
How does city scoping work across endpoints, and are all Chinese cities supported?+
The list_movies, list_cinemas, and get_cinema_filters endpoints all accept a city_id parameter. Known values include 1 for Beijing and 59 for Chengdu. The API returns data for cities where Maoyan has active theater and ticketing coverage, which is concentrated in mainland Chinese cities. Not every city or smaller municipality may return results. You can fork this API on Parse and revise it to add a dedicated city lookup endpoint if you need to enumerate supported city IDs programmatically.
What does list_cinemas return per cinema, and what is the pagination limit?+
Each cinema object in list_cinemas includes id, name, address, sell_price, distance, allow_refund, has_snack, vip_tag, and show_times. The source caps results at 20 cinemas per request regardless of the limit parameter. To retrieve more results, increment the offset parameter. Using district_id (from get_cinema_filters) narrows the result set and can make pagination more manageable in dense urban areas.
Does the API return user reviews or written comments for movies?+
Not currently. The API covers aggregate scores, wish_count, cast, director, genre, duration, trailer URL, and photos via get_movie_detail, but individual user reviews or comment threads are not exposed. You can fork this API on Parse and revise it to add a reviews endpoint if that data is needed.
Does get_cinema_filters return subway line data, and how is it used?+
Yes. The filters object from get_cinema_filters includes a subway key alongside brand, district, hallType, service, and timeRanges. Each filter category has a name and an options array. The subway filter can be used to identify cinemas accessible via specific metro lines, though the actual filtering by subway line must be applied on the client side — list_cinemas accepts district_id but does not currently expose a subway_id filter parameter.
Page content last updated . Spec covers 4 endpoints from www.maoyan.com.
Related APIs in EntertainmentSee all →
m.maoyan.com API
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.
piaofang.maoyan.com API
Track real-time movie box office performance, search films and shows, and monitor streaming popularity rankings across China's entertainment market. Discover theater rankings, upcoming release schedules, and movie showtimes to stay updated on cinema trends and audience engagement metrics.
movietickets.com API
Find movie showtimes and theaters near you, browse now playing and coming soon films, and get detailed movie information including ratings and schedules. Plan your movie nights by checking availability across theaters and viewing comprehensive movie metadata all in one place.
mymovies.it API
Search for movies and showtimes across Italian cinemas, find what's playing near you by city, and discover detailed information about films, cast members, and box office rankings. Browse upcoming releases and get comprehensive cinema details to plan your movie nights.
comingsoon.it API
Find movie showtimes, theater locations, and box office rankings across Italy with access to detailed movie and theater information. Search now-playing films by city, compare showtimes at different cinemas, and discover what's trending at the Italian box office.
landmarktheatres.com API
Find current movies, check showtimes, and browse Landmark Theatres locations nationwide with direct ticketing links. Search what's playing at any US Landmark Theatre and get all the information you need to plan your movie outing.
amctheatres.com API
Find movie showtimes and browse theatre locations across AMC Theatres, with the ability to filter by specific theatre, date, and market area. Quickly discover what's playing and plan your cinema visits with current availability at your preferred locations.
cinemark.cl API
Discover movies playing at Cinemark Chile cinemas, check showtimes and ticket prices, browse concession options, and explore current promotions and rewards program details. Plan your cinema visit by searching available theaters, viewing movie information, and accessing exclusive deals all in one place.