Bilibili User Info API Reference
All API endpoints are rate limited to 1 request per second. Requests exceeding this limit will be queued.
Get comprehensive user information including profile, follower/following count, likes, video count, and total video plays. This is the recommended endpoint for complete user statistics.
| Name | Type | Description |
|---|---|---|
| mid required | integer | Bilibili user ID |
curl https://bili.owo.nz/info/2
{
"success": true,
"data": {
"card": {
"mid": "2",
"name": "碧诗",
"face": "https://i0.hdslb.com/bfs/face/xxx.jpg",
"sign": "bilibili",
"level_info": { "current_level": 6 },
"vip": { "vipStatus": 1 }
},
"follower": 919515,
"like_num": 3547978,
"archive_count": 37,
"archive_view": 213567370,
"article_view": 3230808
},
"error": null
}
Get user card information including profile, follower count, following count, and more.
| Name | Type | Description |
|---|---|---|
| mid required | integer | Bilibili user ID |
curl https://bili.owo.nz/card/2
{
"success": true,
"data": {
"card": {
"mid": "2",
"name": "碧诗",
"face": "https://i0.hdslb.com/bfs/face/xxx.jpg",
"sign": "bilibili",
"level_info": { "current_level": 6 },
"vip": { "vipStatus": 1 }
},
"follower": 919515,
"like_num": 3547978,
"archive_count": 37
},
"error": null
}
Get follower and following count only. Use this for lightweight requests when you only need statistics.
| Name | Type | Description |
|---|---|---|
| mid required | integer | Bilibili user ID |
curl https://bili.owo.nz/stat/2
{
"success": true,
"data": {
"mid": 2,
"following": 234,
"whisper": 0,
"black": 0,
"follower": 919515
},
"error": null
}
Get detailed user space information with Wbi signature. Returns comprehensive user profile data but does not include follower/following counts.
| Name | Type | Description |
|---|---|---|
| mid required | integer | Bilibili user ID |
curl https://bili.owo.nz/user/2
Proxy for Bilibili CDN images to avoid CORS issues. Only allows URLs from Bilibili image domains (i0.hdslb.com, i1.hdslb.com, i2.hdslb.com).
| Name | Type | Description |
|---|---|---|
| url required | string | Full URL of the Bilibili image |
curl "https://bili.owo.nz/proxy?url=https://i0.hdslb.com/bfs/face/xxx.jpg"
<img src="/proxy?url=https://i0.hdslb.com/bfs/face/xxx.jpg" />