Endpoint Playground
Test Crawlora's Bilibili anime 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/anime-home" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"featured_count": 1,
"featured": [
{
"season_id": 109700,
"episode_id": 5054570,
"title": "Featured anime",
"url": "https://www.bilibili.com/bangumi/play/ep5054570",
"cover": "https://i0.hdslb.com/bfs/bangumi/example.jpg",
"rating": "9.7"
}
],
"schedule_title": "New anime schedule",
"latest_update_count": 1,
"latest_updates": [
{
"season_id": 109700,
"episode_id": 5054570,
"title": "Featured anime",
"episode_label": "Episode 49",
"url": "https://www.bilibili.com/bangumi/play/ep5054570",
"cover": "https://i0.hdslb.com/bfs/archive/example.png",
"air_time": "10:00",
"published": true,
"delayed": false
}
],
"schedule_day_count": 1,
"schedule": [
{
"date": "8-26",
"timestamp": 1787673600,
"day_of_week": 3,
"today": true,
"episodes": []
}
],
"ranking_title": "Popular anime ranking",
"ranking_count": 1,
"ranking": [
{
"rank": 1,
"season_id": 109700,
"title": "Top anime",
"url": "https://www.bilibili.com/bangumi/play/ss109700",
"cover": "https://i0.hdslb.com/bfs/bangumi/rank.jpg"
}
],
"new_recommendations_title": "New recommendations",
"new_recommendation_count": 1,
"new_recommendations": [
{
"season_id": 107100,
"title": "New recommendation",
"url": "https://www.bilibili.com/bangumi/play/ss107100",
"cover": "https://i0.hdslb.com/bfs/bangumi/new.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 the anonymous anime homepage's featured titles, latest updates, schedule, popular ranking, and new recommendations. Personalized rotating feed items are excluded.
{
"code": 200,
"msg": "OK",
"data": {
"featured_count": 1,
"featured": [
{
"season_id": 109700,
"episode_id": 5054570,
"title": "Featured anime",
"url": "https://www.bilibili.com/bangumi/play/ep5054570",
"cover": "https://i0.hdslb.com/bfs/bangumi/example.jpg",
"rating": "9.7"
}
],
"schedule_title": "New anime schedule",
"latest_update_count": 1,
"latest_updates": [
{
"season_id": 109700,
"episode_id": 5054570,
"title": "Featured anime",
"episode_label": "Episode 49",
"url": "https://www.bilibili.com/bangumi/play/ep5054570",
"cover": "https://i0.hdslb.com/bfs/archive/example.png",
"air_time": "10:00",
"published": true,
"delayed": false
}
],
"schedule_day_count": 1,
"schedule": [
{
"date": "8-26",
"timestamp": 1787673600,
"day_of_week": 3,
"today": true,
"episodes": []
}
],
"ranking_title": "Popular anime ranking",
"ranking_count": 1,
"ranking": [
{
"rank": 1,
"season_id": 109700,
"title": "Top anime",
"url": "https://www.bilibili.com/bangumi/play/ss109700",
"cover": "https://i0.hdslb.com/bfs/bangumi/rank.jpg"
}
],
"new_recommendations_title": "New recommendations",
"new_recommendation_count": 1,
"new_recommendations": [
{
"season_id": 107100,
"title": "New recommendation",
"url": "https://www.bilibili.com/bangumi/play/ss107100",
"cover": "https://i0.hdslb.com/bfs/bangumi/new.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/bilibili/anime-home" \
-H "x-api-key: $CRAWLORA_API_KEY"