Endpoint Playground
Test Crawlora's Bilibili Weekly Selection API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/bilibili/weekly" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| number | integer | No | Positive issue number; omit for the latest issue |
{
"code": 200,
"msg": "OK",
"data": {
"number": 387,
"subject": "裴令史的妖异诸事",
"label": "第387期(0821更新)",
"description": "每周精选视频主题",
"reminder": "每周五晚18:00 更新",
"count": 1,
"videos": [
{
"bvid": "BV1rHbY6MEB9",
"aid": "117109229094045",
"title": "Selected Bilibili video",
"url": "https://www.bilibili.com/video/BV1rHbY6MEB9",
"cover": "https://i0.hdslb.com/bfs/archive/example.jpg",
"duration_seconds": 1574,
"uploader": {
"id": "3546887391021116",
"name": "Bilibili creator"
},
"stats_text": "1510.9万观看 · 8月17日",
"recommendation": "情节跌宕,立意高远。"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns one issue from Bilibili's weekly selected-video archive. Omit number to resolve and return the latest issue.
{
"code": 200,
"msg": "OK",
"data": {
"number": 387,
"subject": "裴令史的妖异诸事",
"label": "第387期(0821更新)",
"description": "每周精选视频主题",
"reminder": "每周五晚18:00 更新",
"count": 1,
"videos": [
{
"bvid": "BV1rHbY6MEB9",
"aid": "117109229094045",
"title": "Selected Bilibili video",
"url": "https://www.bilibili.com/video/BV1rHbY6MEB9",
"cover": "https://i0.hdslb.com/bfs/archive/example.jpg",
"duration_seconds": 1574,
"uploader": {
"id": "3546887391021116",
"name": "Bilibili creator"
},
"stats_text": "1510.9万观看 · 8月17日",
"recommendation": "情节跌宕,立意高远。"
}
]
}
}curl "https://api.crawlora.net/api/v1/bilibili/weekly" \
-H "x-api-key: $CRAWLORA_API_KEY"