Endpoint Playground
Test Crawlora's Bilibili Vertical Home 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/vertical-home?category=documentary" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | documentary | Vertical: documentary, movie, tv, variety |
{
"code": 200,
"msg": "OK",
"data": {
"category": "documentary",
"featured": [
{
"title": "Featured documentary",
"url": "https://www.bilibili.com/bangumi/play/ep5683721",
"cover": "https://i0.hdslb.com/bfs/bangumi/example.jpg"
}
],
"navigation": [
{
"id": "type",
"name": "Category",
"options": [
{
"name": "All",
"url": "https://www.bilibili.com/documentary/"
}
]
}
],
"sections": [
{
"style": "web_rank_v2",
"title": "Popular ranking",
"cards": [
{
"title": "Ranked documentary",
"rank": 1,
"rating": "9.7",
"cover": "https://i0.hdslb.com/bfs/bangumi/rank.jpg"
}
]
}
]
}
}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 stable server-rendered editorial sections for one Bilibili vertical. Allowed category values: documentary, movie, tv, variety. Rotating feeds, pagination, account state, and streaming URLs are excluded.
{
"code": 200,
"msg": "OK",
"data": {
"category": "documentary",
"featured": [
{
"title": "Featured documentary",
"url": "https://www.bilibili.com/bangumi/play/ep5683721",
"cover": "https://i0.hdslb.com/bfs/bangumi/example.jpg"
}
],
"navigation": [
{
"id": "type",
"name": "Category",
"options": [
{
"name": "All",
"url": "https://www.bilibili.com/documentary/"
}
]
}
],
"sections": [
{
"style": "web_rank_v2",
"title": "Popular ranking",
"cards": [
{
"title": "Ranked documentary",
"rank": 1,
"rating": "9.7",
"cover": "https://i0.hdslb.com/bfs/bangumi/rank.jpg"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/bilibili/vertical-home?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"