Skip to content
GET /v1/stats

Community engagement breakdown and score distribution

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/myanimelist-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "total": 1456504,
        "mal_id": 52991,
        "source": "MyAnimeList (Jikan)",
        "dropped": 23863,
        "on_hold": 29186,
        "platform": "MyAnimeList",
        "watching": 238645,
        "completed": 953024,
        "drop_rate_pct": 1.64,
        "plan_to_watch": 211786,
        "score_distribution": [
            {
                "score": 10,
                "votes": 479240,
                "percentage": 53.4
            },
            {
                "score": 9,
                "votes": 230393,
                "percentage": 25.7
            },
            {
                "score": 8,
                "votes": 102877,
                "percentage": 11.5
            },
            {
                "score": 7,
                "votes": 33425,
                "percentage": 3.7
            },
            {
                "score": 6,
                "votes": 11191,
                "percentage": 1.2
            },
            {
                "score": 5,
                "votes": 5965,
                "percentage": 0.7
            },
            {
                "score": 4,
                "votes": 2607,
                "percentage": 0.3
            },
            {
                "score": 3,
                "votes": 1408,
                "percentage": 0.2
            },
            {
                "score": 2,
                "votes": 1756,
                "percentage": 0.2
            },
            {
                "score": 1,
                "votes": 28442,
                "percentage": 3.2
            }
        ],
        "completion_rate_pct": 65.43
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:32.864Z",
        "request_id": "aba392f0-c83a-455c-9c18-a4a297178132"
    },
    "status": "ok",
    "message": "Stats retrieved successfully",
    "success": true
}