bilibili-API-collect/docs/video_ranking/precious_videos.md
Session小胡 60a0c5d1a2
feat: 各种接口补充与错误修正 (#1066)
* fix(video/collection.md): unclosed xml tags

* feat(video/report.md): uuid not really random

* feat: b23.tv short link

* feat: login/moral/exp log

* feat: v_voucher

* feat: upload video cover & post

* feat(creativecenter/upload.md): upload octet-stream

* feat(creativecenter/upload.md): update some notes

* feat(clientinfo/ip.md): another from live

* feat: live web heartbeat

* feat: update popular series & precious

* fix(creativecenter/upload.md): mistakes in example

* feat: merge duplicate fav info

* feat(README.md): missing link to webmask

* feat(search/hot.md): word_type

* feat(login/login_action): recovery old api

* feat(video/collection.md):  series operation

* feat: video season operation

* feat: add & mod some links

* feat(search/suggest.md): up to date

* feat: web home header image

* feat(misc/sign/bili_ticket.md): demo for nodejs

* feat(creativecenter/upload.md): x-upos-auth validity period

* feat: add referer & buvid3 to request header

* feat: customer service message heartbeat & upload

* feat(customerservice/msg.md): upload code 1200201

* feat(video/report.md): click/web/h5

* feat(video/report.md): view count desc

* feat: laser2

* feat: wbi_key in bili_ticket

* fix: typo & unclosed XML tags

* feat(misc/sign/v_voucher): cookie x-bili-gaia-vtoken

* feat(search/hot.md): square

* feat(video/status_number.md): fold archive_stat/stat

* feat(fav/info.md): resource/infos invalid type 21

* feat: /x/activity/subject/info

* feat: lottery

* feat(docs/misc/b23.tv): remove some unnecessary fields

* feat(creativecenter/upload.md): types/predict

* fix(video/collection.md): invalid end tag

* feat: app version upgrade

* feat(creativecenter/upload.md): tag/recommend #528

* feat(user/status_number.md): navnum

* feat: /x/activity/page/list

* feat(comment/list.md): desc about pagination_str

* feat(comment/list.md): update example

* feat(dynamic/all.md): #1082

* fix(comment/list.md): -352 not -412

* feat: #700

* feat(video/video_stream.md): #606 & cv949156

* feat(message/private_msg.md): single_unread freq

* feat: getUserWallet

* fix: broken form

* feat(Layout.vue): copyright to 2024

* feat: /x/topic/pub/rcmd/search

* feat: #425

* feat(misc/time_stamp.md): rtc/getTimestamp

* fix(misc/time_stamp.md): missing end tag

* feat: #745

* feat(dynamic/all.md): update feed/all

* feat(danmaku/action.md): #220

* feat(live/info.md): gethistory from cv8186413

* fix(danmaku/action.md): missing end tag
2024-08-21 19:02:39 +08:00

3.3 KiB
Raw Blame History

入站必刷视频

获取入站必刷视频

https://api.bilibili.com/x/web-interface/popular/precious

请求方式GET

json回复

根对象:

字段 类型 内容 备注
code num 返回值 0成功
-400请求错误
message str 错误信息 默认为0
ttl num 1
data array 视频列表

data 字段:

字段 类型 内容 备注
title str 标题 入站必刷
media_id num media_id
explain str 解释(概括) 我不允许还有人没看过这??个宝藏视频!
list array 列表

data中的list数组中的对象:

基本同获取视频详细信息web端中的data对象

示例:

curl -G 'https://api.bilibili.com/x/web-interface/popular/precious'
查看响应示例:
{
  "code": 0,
  "message": "0",
  "ttl": 1,
  "data": {
    "title": "入站必刷",
    "media_id": 496307088,
    "explain": "我不允许还有人没看过这98个宝藏视频",
    "list": [
      // ...
      {
        "aid": 706,
        "videos": 1,
        "tid": 47,
        "tname": "同人·手书",
        "copyright": 2,
        "pic": "http://i1.hdslb.com/bfs/archive/753453a776fca838165a52c7511e8557857b61ea.jpg",
        "title": "【東方】Bad Apple!! PV【影絵】",
        "pubdate": 1256995125,
        "ctime": 1497344829,
        "desc": "sm8628149 2011/9/25追记大家如果看到空耳字幕请果断举报净化弹幕环境你我有责感谢。",
        "state": 0,
        "duration": 219,
        "rights": {
          "bp": 0,
          "elec": 0,
          "download": 0,
          "movie": 0,
          "pay": 0,
          "hd5": 0,
          "no_reprint": 0,
          "autoplay": 1,
          "ugc_pay": 0,
          "is_cooperation": 0,
          "ugc_pay_preview": 0,
          "no_background": 0,
          "arc_pay": 0,
          "pay_free_watch": 0
        },
        "owner": {
          "mid": 37,
          "name": "折射",
          "face": "http://i1.hdslb.com/bfs/face/49d19d3d9cc4b3938128cacd650859ac612156a1.gif"
        },
        "stat": {
          "aid": 706,
          "view": 11329388,
          "danmaku": 82247,
          "reply": 544932,
          "favorite": 502984,
          "coin": 195079,
          "share": 95877,
          "now_rank": 0,
          "his_rank": 88,
          "like": 480388,
          "dislike": 0,
          "vt": 0,
          "vv": 11329388
        },
        "dynamic": "",
        "cid": 3724723,
        "dimension": {
          "width": 480,
          "height": 360,
          "rotate": 0
        },
        "season_id": 879555,
        "short_link_v2": "https://b23.tv/BV1xx411c79H",
        "cover43": "",
        "bvid": "BV1xx411c79H",
        "season_type": 0,
        "is_ogv": false,
        "ogv_info": null,
        "rcmd_reason": "",
        "enable_vt": 0,
        "ai_rcmd": null,
        "achievement": "东方project标志性视频"
      },
      // ...
    ]
  }
}