Skip to content
GET /v1/meta

Service metadata

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/acfun-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/acfun-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/acfun-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/acfun-api/v1/meta");
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/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "ranking takes period (DAY/THREE_DAYS/WEEK), optional channel_id and limit (1-50). video takes id (a numeric AcFun video id, the 'ac' number). meta takes no parameters. Banana votes are AcFun-specific (a fan vote, not views or likes); danmaku are the scrolling comments. Counts are live integers; a short ~5-minute cache fronts AcFun.",
        "sample": {
            "views": 3191,
            "bananas": 2368,
            "top_title": "剑星新作人设翻车?玩家争论不休,金亨泰访谈回应【绅批】"
        },
        "source": "AcFun public ranking endpoint + video pages (acfun.cn), keyless, live",
        "service": "acfun-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/video": "One video in full by id (id=48606016).",
            "GET /v1/ranking": "AcFun video ranking by period (period=DAY, limit=30, optional channel_id)."
        },
        "description": "Live rankings and video engagement from AcFun (acfun.cn, 'A站'), the pioneering Chinese ACG video community that brought danmaku to China — the cultural older sibling of Bilibili, with its signature 'banana' votes. The ranking endpoint returns AcFun's video ranking over a period (day/three-days/week), optionally per channel, each video with views, danmaku, likes, banana votes, favourites, shares, comments, uploader and follower count, duration and tags; the video endpoint returns one video in full by its AcFun id. The AcFun platform cut — distinct from Bilibili and the other video/social feeds, with its own banana-vote culture.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:37.580Z",
        "request_id": "d03ab2db-7226-45b2-afdd-baa8c1f7ed68"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}