Naar de inhoud
GET /v1/meta

Spec

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "service": "anilist-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/anime": "Anime detail by id.",
            "GET /v1/manga": "Manga detail by id.",
            "GET /v1/staff": "Staff/voice actor by id or search.",
            "GET /v1/airing": "Upcoming airing schedule.",
            "GET /v1/search": "Search anime or manga (query=, type=ANIME|MANGA).",
            "GET /v1/seasonal": "Seasonal anime (season=, year=).",
            "GET /v1/trending": "Trending now (type=).",
            "GET /v1/character": "Character by id or search."
        },
        "description": "AniList anime & manga: search, anime/manga detail, what's trending now, the seasonal line-up, the upcoming airing schedule (next episodes with countdowns) and character & staff detail. Real live data, no key."
    },
    "meta": {
        "timestamp": "2026-06-08T01:20:11.819Z",
        "request_id": "26bcefac-3b25-4249-8651-ebcb45a8e16e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}