Discover/top.baidu.com API
live

top.baidu.com APItop.baidu.com

Fetch real-time hot search rankings, novel, movie, and TV drama charts from Baidu Top. 8 endpoints, genre filtering, hot scores, and cloud trending words.

Endpoints
8
Updated
4mo ago
Try it

No input parameters required.

api.parse.bot/scraper/1c4f754a-689d-4bde-9ce0-8c483778c3f3/<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/1c4f754a-689d-4bde-9ce0-8c483778c3f3/get_realtime_hot_search' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 8 totalclick to expand

Fetch the real-time hot search rankings (热搜榜) from the Baidu Top board. Returns the current top trending search terms with scores and metadata.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "items": "array of objects with rank, title, query, description, hot_score, hot_change, labels, image, url, raw_url",
    "update_time": "string or null, Unix timestamp of last update"
  },
  "sample": {
    "data": {
      "items": [
        {
          "url": "https://www.baidu.com/s?wd=%E4%B8%AD%E7%BE%8E%E5%85%83%E9%A6%96%E7%A5%88%E5%B9%B4%E6%AE%BF%E5%B9%BF%E5%9C%BA%E5%90%88%E5%BD%B1&sa=fyb_news&rsv_dl=fyb_news",
          "rank": 1,
          "image": "https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg",
          "query": "中美元首祈年殿广场合影",
          "title": "中美元首祈年殿广场合影",
          "labels": [],
          "raw_url": "https://www.baidu.com/s?wd=%E4%B8%AD%E7%BE%8E%E5%85%83%E9%A6%96%E7%A5%88%E5%B9%B4%E6%AE%BF%E5%B9%BF%E5%9C%BA%E5%90%88%E5%BD%B1",
          "hot_score": 7809196,
          "hot_change": "same",
          "description": ""
        }
      ],
      "update_time": null
    },
    "status": "success"
  }
}

About the top.baidu.com API

The Baidu Top API exposes 8 endpoints covering real-time hot search rankings, novel charts, movie rankings, and TV drama boards from top.baidu.com. Each response includes per-item fields like hot_score, hot_change, labels, and rank, plus tags_available for genre and region filtering. The get_realtime_hot_search endpoint returns the current trending search terms with scores and metadata, while get_homepage_summary delivers a cross-category overview including cloud trending words.

Trending Search and Rankings Coverage

The get_realtime_hot_search endpoint returns the current 热搜榜 (hot search board) as an array of ranked items. Each item carries rank, title, query, hot_score, hot_change, description, labels, image, and both url and raw_url fields. The update_time field is a Unix timestamp string indicating when the board was last refreshed, or null if unavailable. No input parameters are required — the endpoint always returns the live snapshot.

Content-Specific Boards with Tag Filtering

Three dedicated endpoints — get_novel_rankings, get_movie_rankings, and get_tv_drama_rankings — mirror the structure of the hot search board but scope results to their respective content types. All three return a tags_available array of tag group objects (each with typeName, text, content, and curIndex), which expose the available genre and region filters for that board. The get_board_by_tab endpoint generalises this: pass a tab parameter (realtime, novel, movie, or teleplay) and an optional tag string (e.g. 都市, 玄幻, 爱情, 喜剧) to retrieve any board with filtering applied in a single call. The get_novel_rankings_by_genre endpoint further specialises this for novels, accepting a genre string and returning filtered novel items alongside tags_available.

Homepage Summary and Cloud Trending Topics

The get_homepage_summary endpoint returns a cards array covering all category boards, each with a title, type, and nested items and optional top_items arrays. It also returns a cloud array of trending word objects, each containing word, hotScore, wordType, and url. This endpoint is suited for dashboards that need a cross-category snapshot in a single request.

URL Construction Utility

The get_search_results_for_keyword endpoint does not return search results. It accepts a keyword string and returns the corresponding Baidu search URL (search_url). This is useful for building links that redirect users to live Baidu search pages for any trending term surfaced by the other endpoints.

Common use cases
  • Track daily shifts in Chinese public interest by monitoring hot_score and hot_change fields from get_realtime_hot_search.
  • Build a content recommendation dashboard that aggregates top novels, movies, and TV dramas using the three dedicated ranking endpoints.
  • Filter novel rankings by genre (e.g. 玄幻 or 现代言情) using get_novel_rankings_by_genre to identify trending titles in a specific category.
  • Populate a trending-topics widget using the cloud array from get_homepage_summary, which exposes word, hotScore, and wordType for each cloud term.
  • Generate direct Baidu search deep-links for trending keywords using get_search_results_for_keyword to route users to live news and discussions.
  • Monitor entertainment trends in the Chinese market by comparing hot_score values across movie and TV drama boards over time.
  • Discover available genre and region filters for any board tab without a separate metadata call by reading tags_available from any ranking endpoint response.
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 Baidu Top have an official developer API?+
Baidu does not publish a public developer API for top.baidu.com. The top board data is not accessible through Baidu's official open platform (open.baidu.com) for end-user consumption.
What does `hot_change` represent in ranking responses?+
The hot_change field appears on every ranked item across all board endpoints and indicates the directional movement of a term or title in the rankings — for example, whether it has risen, fallen, or is newly entered. The exact numeric or categorical value reflects what Baidu Top reports for that item at the time of the snapshot.
Does the API support historical or time-series ranking data?+
Not currently. All endpoints return the current live snapshot of each board; there is no date range parameter or historical archive endpoint. You can fork this API on Parse and revise it to add a time-series collection endpoint that stores successive snapshots.
Can the API filter movies by region (e.g. Chinese vs. foreign films)?+
The get_movie_rankings endpoint returns a tags_available array that includes region-based tag groups alongside genre tags, exposing what filters Baidu Top supports. However, applying a specific region filter requires using get_board_by_tab with the tab set to movie and passing the relevant tag string. If the region tag you need is not listed in tags_available, it is not currently exposed. You can fork this API on Parse and revise it to surface additional tag-filtering combinations.
Is pagination supported for any of the ranking boards?+
None of the current endpoints accept page or offset parameters. Each endpoint returns the full ranked list as provided by the board at that moment. You can fork this API on Parse and revise it to add pagination support if the source exposes additional pages.
Page content last updated . Spec covers 8 endpoints from top.baidu.com.
Related APIs in News MediaSee all →
toutiao.com API
Browse personalized news feeds, discover trending articles and hot topics, search content across categories, view detailed articles with comments, and explore author profiles on Toutiao. Access video feeds and stay updated with the latest news and trending stories all in one place.
qq.com API
Access the latest news, articles, stock indices, and sports schedules from QQ.com's homepage, and search across multiple news categories to stay informed on hot topics and evening reports. Get real-time data including homepage content, images, links, and live sports schedules all from one unified service.
book.douban.com API
Discover and search millions of books from Douban's database, access detailed metadata including ratings, reviews, and short comments, and explore curated collections like top 250 books, new releases, and monthly trending titles. Browse books by category tags and find exactly what you're looking for with powerful search and filtering capabilities.
novelbin.me API
Search and browse novels by title, genre, or popularity, and explore trending, completed, or recently updated works. Access full novel details, chapter listings, chapter content, author information, related titles, and reader comments. Authenticated users can manage bookmarks with reading-status tracking and subscribe to novels for update notifications.
trends.google.com API
Discover what's trending right now in any country by accessing the top search topics with real-time search volume, growth rates, and related queries. Stay informed on trending categories and see which searches are gaining the most momentum in your target markets.
bilibili.com API
Discover and monitor trending videos on Bilibili with access to video metadata, uploader information, and engagement statistics. Stay updated on what's popular across the platform to find the latest viral content and emerging creators.
jjwxc.net API
Access detailed information about novels from Jinjiang Literature City, including metadata, chapter lists, full chapter content, author profiles, and search capabilities. Discover trending novels through rankings or find specific titles using powerful search features.
billboard.com API
Get access to Billboard's music charts, latest news, and interviews to stay updated on chart rankings, industry stories, and artist content. Search and retrieve specific articles or page content to find the music news and information you need.