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
| eg: https://bangumi.bilibili.com/media/web_api/search/result?season_version=-1&area=-1&is_finish=-1©right=-1&season_status=-1&season_month=-1&pub_date=-1&style_id=-1&order=4&st=1&sort=0&page=1&season_type=1&pagesize=20
[Get]https://bangumi.bilibili.com/media/web_api/search/result { season_version=-1, // 类型 -1/全部,1/正片,2/剧场版,3/其他 area=-1, // 地区 -1/全部,2/日本,3/美国, 1-51不含2,3 /其他 is_finish=-1, // 状态 -1/全部, 1/完结,0/连载 copyright=-1,// 版权 -1/全部, 3/独家, 1,2,4其他 season_status=-1,// 付费 -1/全部, 1/免费, 2/付费, 4,6/大会员 season_month=-1,// 季度 -1/全部, 1/1月, 4/4月, 7/7月, 10/10月 pub_date=-1,// 时间 -1/全部, 2019/年份数字 或 2010-2014区间 style_id=-1,// 风格
order=4, // 0/更新时间排行,2/播放数量排行,3/追番人数排行,4/最高评分排行,5/开播时间排行 st=1, //未知 sort=0, // 0,正序/ 1,倒序 page=1, // 当前页码 season_type=1, // 未知 pagesize=20, // 当前每页数量 } 返回结果例子: { data: [ { badge: "会员专享" badge_type: 0 cover: "http://i0.hdslb.com/bfs/bangumi/f5d5f51b941c01f8b90b361b412dc75ecc2608d3.png" index_show: "全14话" is_finish: 1 link: "https://www.bilibili.com/bangumi/play/ss24588" media_id: 102392 season_id: 24588 title: "工作细胞" order: { follow: "596.3万人追番" play: "1.4亿次播放" pub_date: 1530979200 pub_real_time: 1530979200 renewal_time: 1545843600 score: "9.7分" type: "follow" } }, … ], page:{ num: 1 size: 20 total: 3096 } }
|