Naar de inhoud
GET /v1/trending

Trending now

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

Voorbeeldrespons

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

{
    "data": {
        "type": "ANIME",
        "count": 25,
        "results": [
            {
                "id": 182300,
                "type": "ANIME",
                "year": 2026,
                "cover": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx182300-IYkq5KrkQq1V.jpg",
                "score": 82,
                "title": "Wistoria: Wand and Sword Season 2",
                "format": "TV",
                "genres": [
                    "Action",
                    "Adventure",
                    "Drama",
                    "Fantasy"
                ],
                "season": "SPRING",
                "status": "RELEASING",
                "chapters": null,
                "episodes": 12,
                "trending": 510,
                "title_native": "杖と剣のウィストリア Season2",
                "title_romaji": "Tsue to Tsurugi no Wistoria Season 2"
            },
            {
                "id": 21,
                "type": "ANIME",
                "year": 1999,
                "cover": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx21-ELSYx3yMPcKM.jpg",
                "score": 87,
                "title": "ONE PIECE",
                "format": "TV",
                "genres": [
                    "Action",
                    "Adventure",
                    "Comedy",
                    "Drama",
                    "Fantasy"
                ],
                "season": "FALL",
                "status": "RELEASING",
                "chapters": null,
                "episodes": null,
                "trending": 394,
                "title_native": "ONE PIECE",
                "title_romaji": "ONE PIECE"
            },
            {
                "id": 195600,
                "type": "ANIME",
                "year": 2026,
                "cover": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx195600-moI0UFArtOme.jpg",
                "score": 78,
                "title": "Daemons of the Shadow Realm",
                "format": "TV",
                "genres": [
                    "Action",
                    "Adventure",
                    "Comedy",
                    "Fantasy",
                    "Supernatural"
                ],
                "season": "SPRING",
                "status": "RELEASING",
                "chapters": null,
                "episodes": 24,
                "trending": 310,
                "title_native": "黄泉のツガイ",
                "title_romaji": "Yomi no Tsugai"
            },
            {
                "id": 147105,
                "type": "ANIME",
                "year": 2026,
                "cover": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx147105-rwOX8qyUy8gV.jpg",
                "score": 86,
                "title": "Witch Hat Atelier",
                "format": "ONA",
                "genres": [
                    "Adventure",
                    "Drama",
                    "Fantasy"
                
…