Naar de inhoud
GET /v1/anime

Title snapshot — MAL score, rank, members

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/myanimelist-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "url": "https://myanimelist.net/anime/52991/Sousou_no_Frieren",
        "rank": 1,
        "type": "TV",
        "year": 2023,
        "score": 9.26,
        "title": "Sousou no Frieren",
        "mal_id": 52991,
        "source": "MyAnimeList (Jikan)",
        "status": "Finished Airing",
        "members": 1456504,
        "episodes": 28,
        "platform": "MyAnimeList",
        "favorites": 90440,
        "scored_by": 897304,
        "title_english": "Frieren: Beyond Journey's End",
        "popularity_rank": 104
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:32.730Z",
        "request_id": "93e83e55-9e53-4afe-aaa8-92d2036850ee"
    },
    "status": "ok",
    "message": "Anime retrieved successfully",
    "success": true
}