Endpoint Playground
Test Crawlora's Bilibili All-Site Ranking 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/ranking" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"videos": [
{
"rank": 1,
"aid": "117150215835256",
"title": "Ranked Bilibili video",
"url": "https://www.bilibili.com/video/av117150215835256",
"cover": "https://i0.hdslb.com/bfs/archive/example.jpg",
"views": 3630686,
"danmaku": 13897,
"replies": 22502,
"favorites": 64334,
"likes": 401606,
"duration_seconds": 2746,
"published_at": 1787571194,
"category_id": 183,
"category": "影视剪辑",
"creator": {
"mid": 525952604,
"name": "Bilibili creator",
"followers": 3735326
}
}
]
}
}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 the current official all-site ranking with video engagement, category, and creator metadata in rank order.
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"videos": [
{
"rank": 1,
"aid": "117150215835256",
"title": "Ranked Bilibili video",
"url": "https://www.bilibili.com/video/av117150215835256",
"cover": "https://i0.hdslb.com/bfs/archive/example.jpg",
"views": 3630686,
"danmaku": 13897,
"replies": 22502,
"favorites": 64334,
"likes": 401606,
"duration_seconds": 2746,
"published_at": 1787571194,
"category_id": 183,
"category": "影视剪辑",
"creator": {
"mid": 525952604,
"name": "Bilibili creator",
"followers": 3735326
}
}
]
}
}curl "https://api.crawlora.net/api/v1/bilibili/ranking" \
-H "x-api-key: $CRAWLORA_API_KEY"