Endpoint Playground
Test Crawlora's Bilibili popular videos 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/popular" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| cursor | integer | No | Upstream cursor from the previous response; defaults to 0 |
{
"code": 200,
"msg": "OK",
"data": {
"cursor": 0,
"next_cursor": 10,
"no_more": false,
"count": 1,
"videos": [
{
"bvid": "BV1xx411c7mD",
"aid": "170001",
"title": "Popular Bilibili video",
"url": "https://www.bilibili.com/video/BV1xx411c7mD",
"cover": "https://i0.hdslb.com/bfs/archive/example.jpg",
"duration": "12:34",
"uploader": "Bilibili creator",
"views_and_age": "123万观看 · 2天前",
"reason": "百万播放",
"upstream_cursor": 10
}
]
}
}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 Bilibili's current popular-video feed in upstream order. Pass next_cursor back as cursor to continue to the next batch.
{
"code": 200,
"msg": "OK",
"data": {
"cursor": 0,
"next_cursor": 10,
"no_more": false,
"count": 1,
"videos": [
{
"bvid": "BV1xx411c7mD",
"aid": "170001",
"title": "Popular Bilibili video",
"url": "https://www.bilibili.com/video/BV1xx411c7mD",
"cover": "https://i0.hdslb.com/bfs/archive/example.jpg",
"duration": "12:34",
"uploader": "Bilibili creator",
"views_and_age": "123万观看 · 2天前",
"reason": "百万播放",
"upstream_cursor": 10
}
]
}
}curl "https://api.crawlora.net/api/v1/bilibili/popular" \
-H "x-api-key: $CRAWLORA_API_KEY"