File size: 15,527 Bytes
0aee47a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
{
  "info": {
    "stat": {
      "url": "https://api.bilibili.com/x/web-interface/archive/stat",
      "method": "GET",
      "verify": false,
      "params": {
        "aid": "int: av 号",
        "bvid": "string: BV 号"
      },
      "comment": "视频数据"
    },
    "info": {
      "url": "https://api.bilibili.com/x/web-interface/view",
      "method": "GET",
      "verify": false,
      "params": {
        "aid": "int: av 号",
        "bvid": "string: BV 号"
      },
      "comment": "视频详细信息"
    },
    "detail": {
      "url": "https://api.bilibili.com/x/web-interface/wbi/view/detail",
      "method": "GET",
      "verify": false,
      "params": {
        "aid": "int: av 号",
        "bvid": "string: BV 号",
        "need_operation_card": "int: 0",
        "need_elec": "int: 0"
      }
    },
    "cid_info": {
      "url": "https://hd.biliplus.com/api/cidinfo",
      "method": "GET",
      "verify": false,
      "params": {
        "cid": "int:分 P CID"
      },
      "comment": "获取 cid 对应的视频"
    },
    "tags": {
      "url": "https://api.bilibili.com/x/web-interface/view/detail/tag",
      "method": "GET",
      "verify": false,
      "params": {
        "aid": "int: av 号",
        "bvid": "string: BV 号"
      },
      "comment": "视频标签信息"
    },
    "chargers": {
      "url": "https://api.bilibili.com/x/web-interface/elec/show",
      "method": "GET",
      "verify": false,
      "params": {
        "aid": "int: av 号",
        "bvid": "string: BV 号",
        "mid": "int: 用户 UID"
      },
      "comment": "视频充电信息"
    },
    "video_snapshot_pvideo": {
      "url": "https://api.bilibili.com/pvideo",
      "method": "GET",
      "verify": false,
      "params": {
        "aid": "int: av 号"
      },
      "comment": "视频预览快照(web)"
    },
    "video_snapshot": {
      "url": "https://api.bilibili.com/x/player/videoshot",
      "method": "GET",
      "verify": false,
      "params": {
        "aid": "int: av 号",
        "bvid": "string: BV 号",
        "cid": "int:分 P CID",
        "index": "int:json 数组截取时间表1为需要,0不需要"
      },
      "comment": "视频快照(web)"
    },
    "pages": {
      "url": "https://api.bilibili.com/x/player/pagelist",
      "method": "GET",
      "verify": false,
      "params": {
        "aid": "int: av 号",
        "bvid": "string: BV 号"
      },
      "comment": "分 P 列表"
    },
    "playurl": {
      "url": "https://api.bilibili.com/x/player/playurl",
      "method": "GET",
      "verify": false,
      "params": {
        "avid": "int: av 号",
        "cid": "int: 分 P 编号",
        "qn": "int: 视频质量编号,最高 127",
        "otype": "const str: json",
        "fnval": "const int: 4048",
        "platform": "int: 平台"
      },
      "comment": "视频下载的信息,下载链接需要提供 headers 伪装浏览器请求(Referer 和 User-Agent)"
    },
    "related": {
      "url": "https://api.bilibili.com/x/web-interface/archive/related",
      "method": "GET",
      "verify": false,
      "params": {
        "aid": "int: av 号",
        "bvid": "string: BV 号"
      },
      "comment": "获取关联视频"
    },
    "relation": {
      "url": "https://api.bilibili.com/x/web-interface/archive/relation",
      "method": "GET",
      "verify": true,
      "params": {
        "aid": "int: av 号",
        "bvid": "string: BV 号"
      },
      "comment": "获取用户与视频关联的信息"
    },
    "has_liked": {
      "url": "https://api.bilibili.com/x/web-interface/archive/has/like",
      "method": "GET",
      "verify": true,
      "params": {
        "aid": "int: av 号",
        "bvid": "string: BV 号"
      },
      "comment": "是否已点赞"
    },
    "get_pay_coins": {
      "url": "https://api.bilibili.com/x/web-interface/archive/coins",
      "method": "GET",
      "verify": true,
      "params": {
        "aid": "int: av 号",
        "bvid": "string: BV 号"
      },
      "comment": "是否已投币"
    },
    "has_favoured": {
      "url": "https://api.bilibili.com/x/v2/fav/video/favoured",
      "method": "GET",
      "verify": true,
      "params": {
        "aid": "int: av 号"
      },
      "comment": "是否已收藏"
    },
    "media_list": {
      "url": "https://api.bilibili.com/x/v3/fav/folder/created/list-all",
      "method": "GET",
      "verify": true,
      "params": {
        "rid": "int: av 号",
        "up_mid": "int: up 主的 uid",
        "type": "const int: 2"
      },
      "comment": "获取收藏夹列表信息,用于收藏操作"
    },
    "get_player_info": {
      "url": "https://api.bilibili.com/x/player/v2",
      "method": "GET",
      "verify": true,
      "data": {
        "aid": "int: av 号。与 bvid 任选其一",
        "cid": "int: 分 P id",
        "bvid": "int: bv 号。与 aid 任选其一",
        "ep_id": "int: 番剧分集 id"
      },
      "comment": "获取视频上一次播放的记录,字幕和地区信息。需要 分集的 cid, 返回数据中含有json字幕的链接"
    },
    "pbp": {
      "url": "https://bvc.bilivideo.com/pbp/data",
      "method": "GET",
      "verify": false,
      "params": {
        "cid": "int: 分 P 编号",
        "bvid": "string: BV 号",
        "aid": "int: av 号"
      }
    },
    "is_forbid": {
      "url": "https://api.bilibili.com/x/note/is_forbid",
      "method": "GET",
      "verify": true,
      "params": {
        "aid": "int: av 号"
      },
      "comment": "是否允许笔记"
    },
    "private_notes": {
      "url": "https://api.bilibili.com/x/note/list/archive",
      "method": "GET",
      "verify": true,
      "params": {
        "oid": "int: av 号",
        "oid_type": "int: oid_type"
      },
      "comment": "列出稿件私有笔记列表"
    },
    "public_notes": {
      "url": "https://api.bilibili.com/x/note/publish/list/archive",
      "method": "GET",
      "verify": true,
      "params": {
        "oid": "int: av 号",
        "oid_type": "int: oid_type",
        "pn": "int: 页码",
        "ps": "int: 每页项数"
      },
      "comment": "列出稿件公开笔记列表"
    },
    "video_online_broadcast_servers": {
      "method": "GET",
      "verify": true,
      "url": "https://api.bilibili.com/x/web-interface/broadcast/servers?platform=pc",
      "comment": "获取视频在线人数实时监测服务器列表"
    },
    "ai_conclusion": {
      "url": "https://api.bilibili.com/x/web-interface/view/conclusion/get",
      "method": "GET",
      "wbi": true,
      "params": {
        "aid": "int: av 号",
        "bvid": "string: BV 号",
        "cid": "int: cid",
        "up_mid": "int: up_mid"
      },
      "comment": "ai 总结"
    },
    "online": {
      "url": "https://api.bilibili.com/x/player/online/total",
      "method": "GET",
      "verify": false,
      "params": {
        "aid": "int: av 号",
        "bvid": "int: bvid",
        "cid": "int: cid"
      },
      "comment": "在线人数检测"
    }
  },
  "operate": {
    "like": {
      "url": "https://api.bilibili.com/x/web-interface/archive/like",
      "method": "POST",
      "verify": true,
      "data": {
        "aid": "int: av 号",
        "bvid": "string: BV 号",
        "like": "int: 1 是点赞,2 是取消点赞"
      },
      "comment": "给视频点赞/取消点赞 "
    },
    "coin": {
      "url": "https://api.bilibili.com/x/web-interface/coin/add",
      "method": "POST",
      "verify": true,
      "data": {
        "aid": "int: av 号",
        "bvid": "string: BV 号",
        "multiply": "int: 几个币",
        "select_like": "int bool: 是否同时点赞"
      },
      "comment": "给视频投币"
    },
    "share": {
      "url": "https://api.bilibili.com/x/web-interface/share/add",
      "method": "POST",
      "verify": true,
      "data": {
        "aid": "int: av 号",
        "bvid": "string: BV 号",
        "csrf": "str: csrf"
      },
      "comment": "视频分享"
    },
    "add_tag": {
      "url": "https://api.bilibili.com/x/tag/archive/add",
      "method": "POST",
      "verify": true,
      "data": {
        "aid": "int: av 号",
        "tag_name": "str: 标签名"
      },
      "comment": "添加标签"
    },
    "del_tag": {
      "url": "https://api.bilibili.com/x/tag/archive/del",
      "method": "POST",
      "verify": true,
      "data": {
        "aid": "int: av 号",
        "tag_id": "int: 标签 id"
      },
      "comment": "删除标签"
    },
    "yjsl": {
      "url": "https://api.bilibili.com/x/web-interface/archive/like/triple",
      "method": "POST",
      "verify": true,
      "params": {
        "aid": "int: av 号",
        "bvid": "string: BV 号"
      },
      "comment": "阿婆最爱的一键三连欧"
    },
    "subscribe_tag": {
      "url": "https://api.bilibili.com/x/tag/subscribe/add",
      "method": "POST",
      "verify": true,
      "data": {
        "tag_id": "int: 标签 id"
      },
      "comment": "订阅标签"
    },
    "unsubscribe_tag": {
      "url": "https://api.bilibili.com/x/tag/subscribe/cancel",
      "method": "POST",
      "verify": true,
      "data": {
        "tag_id": "int: 标签 id"
      },
      "comment": "取消订阅标签"
    },
    "appeal": {
      "url": "https://api.bilibili.com/x/web-interface/archive/appeal",
      "method": "POST",
      "verify": true,
      "data": {
        "aid": "int: av 号",
        "tid": "int: 投诉理由 tid, 见 https://api.bilibili.com/x/web-interface/archive/appeal/tags",
        "desc": "str: 理由详细描述",
        "attach": "str: 附件路径",
        "#一些 kwargs": "翻源代码理解吧"
      },
      "comment": "投诉稿件"
    },
    "favorite": {
      "url": "https://api.bilibili.com/x/v3/fav/resource/deal",
      "method": "POST",
      "verify": true,
      "data": {
        "rid": "int: av 号。",
        "type": "const int: 2",
        "add_media_ids": "commaSeparatedList[int]: 要添加到的收藏夹 ID。",
        "del_media_ids": "commaSeparatedList[int]: 要移出的收藏夹 ID。"
      },
      "comment": "设置视频收藏状态"
    },
    "submit_subtitle": {
      "url": "https://api.bilibili.com/x/v2/dm/subtitle/draft/save",
      "method": "POST",
      "verify": true,
      "data": {
        "type": 1,
        "oid": "int: 分 P id",
        "lan": "str: 字幕语言代码,参考 http://www.lingoes.cn/zh/translator/langcode.htm",
        "data": {
          "font_size": "float: 字体大小,默认 0.4",
          "font_color": "str: 字体颜色,默认 \"#FFFFFF\"",
          "background_alpha": "float: 背景不透明度,默认 0.5",
          "background_color": "str: 背景颜色,默认 \"#9C27B0\"",
          "Stroke": "str: 描边,目前作用未知,默认为 \"none\"",
          "body": [
            {
              "from": "int: 字幕开始时间(秒)",
              "to": "int: 字幕结束时间(秒)",
              "location": "int: 字幕位置,默认为 2",
              "content": "str: 字幕内容"
            }
          ]
        },
        "submit": "bool: 是否提交,不提交为草稿",
        "sign": "bool: 是否署名",
        "bvid": "str: 视频 BV 号"
      },
      "comment": "上传字幕"
    }
  },
  "danmaku": {
    "get_danmaku": {
      "url": "https://api.bilibili.com/x/v2/dm/web/seg.so",
      "method": "GET",
      "verify": false,
      "params": {
        "oid": "int: video_info 中的 cid,即分 P 的编号",
        "type": "const int: 1",
        "segment_index": "int: 分片序号",
        "pid": "int: av 号"
      },
      "comment": "获取弹幕列表"
    },
    "get_history_danmaku": {
      "url": "https://api.bilibili.com/x/v2/dm/web/history/seg.so",
      "method": "GET",
      "verify": true,
      "params": {
        "oid": "int: video_info 中的 cid,即分 P 的编号",
        "type": "const int: 1",
        "date": "str: 历史弹幕日期,格式:YYYY-MM-DD"
      },
      "comment": "获取历史弹幕列表"
    },
    "view": {
      "url": "https://api.bilibili.com/x/v2/dm/web/view",
      "method": "GET",
      "verify": false,
      "params": {
        "type": 1,
        "oid": "int: 分 P 的编号",
        "pid": "int: av 号"
      },
      "comment": "获取弹幕设置、特殊弹幕"
    },
    "get_history_danmaku_index": {
      "url": "https://api.bilibili.com/x/v2/dm/history/index",
      "method": "GET",
      "verify": true,
      "params": {
        "oid": "int: 分 P 的编号",
        "type": "const int: 1",
        "month": "str: 年月 (yyyy-mm)"
      },
      "comment": "存在历史弹幕的日期"
    },
    "has_liked_danmaku": {
      "url": "https://api.bilibili.com/x/v2/dm/thumbup/stats",
      "method": "GET",
      "verify": true,
      "params": {
        "oid": "int: video_info 中的 cid,即分 P 的编号",
        "ids": "commaSeparatedList[int]: 弹幕 id,多个以逗号分隔"
      },
      "comment": "是否已点赞弹幕"
    },
    "send_danmaku": {
      "url": "https://api.bilibili.com/x/v2/dm/post",
      "method": "POST",
      "verify": true,
      "data": {
        "type": "const int: 1",
        "oid": "int: 分 P 编号",
        "msg": "int: 弹幕内容",
        "bvid": "int: bvid",
        "progress": "int: 发送时间(毫秒)",
        "color": "int: 颜色(十六进制转十进制)",
        "fontsize": "int: 字体大小(小 18 普通 25 大 36)",
        "pool": "int bool: 字幕弹幕(1 是 0 否)",
        "mode": "int: 模式(滚动 1 顶部 5 底部 4)",
        "plat": "const int: 1"
      },
      "comment": "发送弹幕"
    },
    "like_danmaku": {
      "url": "https://api.bilibili.com/x/v2/dm/thumbup/add",
      "method": "POST",
      "verify": true,
      "data": {
        "dmid": "int: 弹幕 ID",
        "oid": "int: 分 P 编号",
        "op": "int: 1 点赞 2 取消点赞",
        "platform": "const str: web_player"
      },
      "comment": "点赞弹幕"
    },
    "edit_danmaku": {
      "url": "https://api.bilibili.com/x/v2/dm/edit/state",
      "method": "POST",
      "verify": true,
      "data": {
        "type": "const int: 1",
        "dmids": "int: 弹幕 ID",
        "oid": "int: 视频 cid",
        "state": "int: 1 删除 2 保护 3 取消保护"
      },
      "comment": "编辑弹幕"
    },
    "snapshot": {
      "url": "http://api.bilibili.com/x/v2/dm/ajax",
      "method": "GET",
      "verify": false,
      "params": {
        "aid": "int or string: av 号或 BV 号"
      },
      "comment": "获取弹幕快照"
    },
    "recall": {
      "url": "http://api.bilibili.com/x/dm/recall",
      "method": "GET",
      "verify": false,
      "data": {
        "dmid": "int: 弹幕 ID",
        "cid": "int: 分 P 编号",
        "csrf": "cookies: bili_jct"
      },
      "comment": "撤回弹幕"
    }
  }
}