Discover/Douban API
live

Douban APImovie.douban.com

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.

This API takes change requests — .
Endpoint health
monitored
explore_movies
get_movie_details
search_movies
Checks pendingself-healing
Endpoints
3
Updated
2h ago
This call costs1 credit / call— charged only on success
Try it
Number of results per page. Maximum 50.
Search keyword (Chinese or English movie title, actor name, etc.)
Pagination offset (0-based).
api.parse.bot/scraper/ee79315d-9c27-470b-b743-3e7cb12b0f4c/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ee79315d-9c27-470b-b743-3e7cb12b0f4c/search_movies?query=%E8%82%96%E7%94%B3%E5%85%8B' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

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

Input
ParamTypeDescription
countintegerNumber of results per page. Maximum 50.
queryrequiredstringSearch keyword (Chinese or English movie title, actor name, etc.)
startintegerPagination offset (0-based).
Response
{
  "type": "object",
  "fields": {
    "count": "integer — requested page size",
    "items": "array of movie summary objects with id, title, year, cover_url, rating, card_subtitle, type",
    "start": "integer — current offset",
    "total": "integer — total number of matching results"
  },
  "sample": {
    "data": {
      "count": 20,
      "items": [
        {
          "id": "1292052",
          "type": "movie",
          "year": "1994",
          "title": "肖申克的救赎",
          "rating": {
            "max": 10,
            "count": 3316478,
            "value": 9.7,
            "star_count": 5
          },
          "cover_url": "https://qnmob3.doubanio.com/view/photo/large/public/p2934829882.jpg?imageView2/0/q/80/w/9999/h/120/format/jpg",
          "card_subtitle": "美国 / 剧情 犯罪 / 弗兰克·德拉邦特 / 蒂姆·罗宾斯 摩根·弗里曼"
        }
      ],
      "start": 0,
      "total": 7
    },
    "status": "success"
  }
}

About the Douban API

The Douban API on Parse exposes 3 endpoints for the publicly available data on movie.douban.com. Calls return JSON over HTTPS and are billed per successful response.

Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.