/v1/video
One video in full by id
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/acfun-api/v1/video" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/acfun-api/v1/video", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/acfun-api/v1/video");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/acfun-api/v1/video",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"url": "https://www.acfun.cn/v/ac48606016",
"note": "One AcFun video in full: its views, danmaku (scrolling comments), likes, banana votes, favourites, shares and comments, its uploader and their follower count, channel, duration, tags and description. Banana votes are AcFun-specific (not views or likes). Live, cached ~5m.",
"tags": [
"steam游戏",
"steam",
"金亨泰",
"剑星血雨",
"剑星"
],
"likes": 495,
"title": "剑星新作人设翻车?玩家争论不休,金亨泰访谈回应【绅批】",
"views": 3191,
"shares": 36,
"source": "AcFun video page embedded data (acfun.cn/v/ac{id}), keyless",
"bananas": 2368,
"channel": "主机单机",
"danmaku": 521,
"comments": 81,
"uploader": "老绅",
"favorites": 61,
"channel_id": 84,
"content_id": "48606016",
"description": "别打了,打个大西瓜",
"uploader_id": "526850",
"uploader_fans": 1107697,
"duration_seconds": 499
},
"meta": {
"timestamp": "2026-06-13T04:42:36.844Z",
"request_id": "02e2ca16-ec13-4fef-88ec-08c1ab5e4f52"
},
"status": "ok",
"message": "Video retrieved successfully",
"success": true
}