Misc

Query Hotboards

0calls
1 credits / call

Want to keep up with what is trending online? This endpoint pulls real-time hot boards from a wide range of major platforms in one call.

GET
uapis.cn
/api/v1/misc/hotboard
Query parameters
6
type
string
required
The hot board platform you want to query. Pick one from the .
time
integer
Pro

Time-machine mode: a millisecond timestamp. Returns the nearest displayable historical hot board snapshot around that time. Omit to get the current real-time hot board.

keyword
string
Pro

Search mode: searches past hot boards for entries containing this keyword within a historical time range. Must be combined with time_start and time_end.

time_start
integer
Pro

Required for search mode: search start timestamp (milliseconds), within that platform's historical data coverage.

time_end
integer
Pro

Required for search mode: search end timestamp (milliseconds), later than time_start and within that platform's historical data coverage.

limit
integer
Pro

Maximum number of results returned in search mode. Default 50, maximum 200.

Overview

Provide a platform type and the endpoint returns the current hot board list for that platform. Each entry includes the title, hot value, and original link — ideal for information aggregation apps and dashboards.

Three usage modes

Default mode

Pass only the type parameter to retrieve the current real-time hot board for that platform.

Time-machine mode

Pass type + time to retrieve the nearest displayable historical hot board snapshot around the given timestamp.

Search mode

Pass type + keyword + time_start + time_end to search past hot board entries that contain the keyword within the historical time range. Use limit to cap the number of returned items.

Note

All returnedupdate_time values are in UTC, formatted as ISO 8601 ending with Z (e.g. 2026-03-20T21:39:16.000Z). Add 8 hours to display Beijing time.

Query parameters

type
stringrequired
The hot board platform you want to query. Pick one from the .
time
integeroptional

Time-machine mode: a millisecond timestamp. Returns the nearest displayable historical hot board snapshot around that time. Omit to get the current real-time hot board.

keyword
stringoptional

Search mode: searches past hot boards for entries containing this keyword within a historical time range. Must be combined with time_start and time_end.

time_start
integeroptional

Required for search mode: search start timestamp (milliseconds), within that platform's historical data coverage.

time_end
integeroptional

Required for search mode: search end timestamp (milliseconds), later than time_start and within that platform's historical data coverage.

limit
integeroptional

Maximum number of results returned in search mode. Default 50, maximum 200.

Response

200 / OK

Lookup successful. Returns the hot board list for the specified platform. Default mode and time-machine mode return a list array; search mode returns a results array.

Format 1Default mode / Time-machine mode
JSON
{
  "type": "weibo",
  // Hot board update time in UTC (ISO 8601, ending with Z). In time-machine mode this is the returned snapshot's update time.
  "update_time": "2026-03-20T21:39:16.000Z",
  // Actual snapshot timestamp (milliseconds) returned in time-machine mode. Usually omitted for current hot board mode.
  "snapshot_time": 1700000000000,
  // Hot board entries.
  "list": [
    {
      // Additional information. The contents vary by platform; for example, Weibo trending tags such as "new" or "hot".
      "extra": {},
      "hot_value": "1234567",
      "index": 1,
      "title": "What a beautiful day today",
      "url": "https://s.weibo.com/weibo?q=%23%E4%BB%8A%E5%A4%A9%E5%A4%A9%E6%B0%94%E7%9C%9F%E5%A5%BD%23",
      // Cover image URL. Music hot boards return the album cover; most other platforms do not return this field.
      "cover": "https://p1.music.126.net/xxx/109951170483249998.jpg"
    }
  ]
}
Format 2Search mode
JSON
{
  "type": "weibo",
  // Search keyword.
  "keyword": "AI",
  // Number of matched results.
  "count": 0,
  // Search results array.
  "results": [
    {
      "title": "AI breakthrough",
      "hot_value": "999999",
      "url": "https://example.com"
    }
  ]
}

400 / Bad Request

Invalid request parameter. The type you provided is not a supported platform — please double-check the spelling.

JSON
{
  "code": "INVALID_ARGUMENT",
  "details": {},
  "message": "Invalid hotboard type specified."
}

500 / Internal Server Error

Failed to fetch the hot board. The server hit an internal error while processing the data.

JSON
{
  "code": "INTERNAL_SERVER_ERROR",
  "details": {},
  "message": "Failed to process hotboard data."
}

502 / Bad Gateway

Data is temporarily unavailable. Please try again later.

JSON
{
  "code": "UPSTREAM_ERROR",
  "details": {},
  "message": "Failed to fetch hotboard from upstream source."
}