Vai al contenuto
GET /v1/meta

Spec

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/anilist-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}