# AniList — Zapi reference > Database anime & manga: pencarian, detail lengkap, karakter, staff, trending, dan anime musiman. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/movie/anilist - Endpoint catalog: https://zpi.web.id/category/movie - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## AniList **Category:** movie · **Slug:** `anilist` **Detail page:** https://zpi.web.id/api/movie/anilist Database anime & manga: pencarian, detail lengkap, karakter, staff, trending, dan anime musiman. **Tags:** anime, manga, trending ### Character AniList Character — detail satu karakter anime/manga berdasarkan ID. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/movie:anilist/character/:id` - **Cache TTL:** 21600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | number | path | yes | AniList character ID (angka). Mis. 17 = Naruto Uzumaki | **cURL:** ```bash curl "https://api.zpi.web.id/v1/movie:anilist/character/:id" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/movie:anilist/character/:id", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/movie:anilist/character/:id", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "id": 17, "age": "12-17 (Naruto), 27- (Boruto)", "url": "https://anilist.co/character/17", "name": "Naruto Uzumaki", "image": "https://s4.anilist.co/file/anilistcdn/character/large/b17-phjcWCkRuIhu.png", "gender": "Male", "appearsIn": [ { "id": 20, "type": "anime", "title": "Naruto", "format": "TV" }, { "id": 1735, "type": "anime", "title": "Naruto: Shippuden", "format": "TV" }, { "id": 97938, "type": "anime", "title": "Boruto: Naruto Next Generations", "format": "TV" }, { "id": 16870, "type": "anime", "title": "The Last: Naruto the Movie", "format": "MOVIE" }, { "id": 21220, "type": "anime", "title": "Boruto: Naruto the Movie", "format": "MOVIE" }, { "id": 30011, "type": "manga", "title": "Naruto", "format": "MANGA" }, { "id": 13667, "type": "anime", "title": "Road to Ninja: Naruto the Movie", "format": "MOVIE" }, { "id": 2472, "type": "anime", "title": "Naruto Shippuden the Movie", "format": "MOVIE" }, { "id": 10589, "type": "anime", "title": "Naruto Shippuden the Movie: Blood Prison", "format": "MOVIE" }, { "id": 8246, "type": "anime", "title": "Naruto Shippuden the Movie: The Lost Tower", "format": "MOVIE" } ], "bloodType": "B", "favourites": 19299, "nameNative": "うずまきナルト", "dateOfBirth": "10-10", "description": "__Height__: 145-180 cm \n__Family:__ ~![Minato Namikaze](https://anilist.co/character/2535) (father), [Kushina Uzumaki](https://anilist.co/character/7302) (mother), [Jiraiya](https://anilist.co/character/2423) (godfather) !~\n\nBorn in Konohagakure, a ninja village hidden in the leaves, Naruto Uzumaki was destined for greatness. When born, a powerful [nine-tailed demon fox](https://anilist.co/character/7407) attacked his village. With a wave of its tail, the demon fox could raise tsunamis and shatter mountains. In a valiant attempt to save the village from destruction, the [Fourth Hokage](https://anilist.co/character/2535) and leader of the Hidden Leaf Village sealed the demon fox within Naruto's newborn body. This was his final act, for the battle with the fox cost him his life. Despite the Fourth Hokage's dying wish that Naruto is viewed as a hero for serving as the container for the demon (a _Jinchuuriki_), the adult villagers of Konoha harbored a fierce hatred for him, with many believing that Naruto and the demons were one and the same. Cast aside as an inhuman monster, Naruto was outcast and ostracised by the villagers for reasons he could not understand. The children his age could only ever follow their parents' example; and they too came to harbor a fierce hatred for Naruto. Naruto eventually came to accept that he would live and die alone, and his external response was to perform harmless pranks on the village. Coy, raffish, and full of life, Naruto soon came to display a somewhat unexpected determination to succeed and be accepted by others. Upon being assigned to \"Team Seven\" as a Genin-ranked ninja, his true potential soon became outwardly apparent. Vowing to become Hokage one day and using his will to never give in, Naruto saves the village from invading forces and earns his acceptance. Eventually, Naruto learns to harness the power of the Demon Fox sealed inside him to perform acts of strength far beyond what any other human is capable of. In all, Naruto is an admirable character whose sheer determination to succeed despite the odds, earns him respect and devotion from his fellow villagers.", "alternativeNames": [ "Nine-Tails Jinchuuriki", "The Show-Off", "Number One Unpredictable", "Noisy Ninja", "Number One Hyperactive", "Knucklehead Ninja", "Fox" ] } ``` --- ### Media AniList Media Detail — info lengkap satu anime atau manga berdasarkan ID. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/movie:anilist/media/:id` - **Cache TTL:** 1800s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | number | path | yes | AniList media ID (angka). Mis. 20 = Naruto (anime) | | `type` | enum(anime|manga) | query | no | Jenis media: anime atau manga. Default anime | **cURL:** ```bash curl "https://api.zpi.web.id/v1/movie:anilist/media/:id?type=anime" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/movie:anilist/media/:id?type=anime", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/movie:anilist/media/:id?type=anime", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "id": 20, "url": "https://anilist.co/anime/20", "tags": [ "Ninja", "Shounen", "Coming of Age", "Male Protagonist", "Orphan", "Super Power", "Martial Arts", "Found Family", "Primarily Child Cast", "Ensemble Cast", "Battle Royale", "Bullying", "Slapstick", "LGBTQ+ Themes", "Achronological Order" ], "type": "anime", "color": "#e47850", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx20-dE6UHbFFg1A5.jpg", "malId": 20, "score": 80, "title": "Naruto", "banner": "https://s4.anilist.co/file/anilistcdn/media/anime/banner/20-HHxhPj5JD13a.jpg", "format": "TV", "genres": [ "Action", "Adventure", "Comedy", "Drama", "Fantasy", "Supernatural" ], "season": "FALL", "source": "MANGA", "status": "FINISHED", "endDate": "2007-02-08", "isAdult": false, "studios": [ "Studio Pierrot" ], "trailer": "https://www.youtube.com/watch?v=-G9BqkgZXRA", "duration": 23, "episodes": 220, "synonyms": [ "נארוטו", "ناروتو", "火影忍者", "นารูโตะ นินจาจอมคาถา", "Наруто" ], "meanScore": 80, "startDate": "2002-10-03", "favourites": 40121, "imageLarge": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx20-dE6UHbFFg1A5.jpg", "popularity": 694193, "seasonYear": 2002, "description": "Naruto Uzumaki, a hyperactive and knuckle-headed ninja, lives in Konohagakure, the Hidden Leaf village. Moments prior to his birth, a huge demon known as the Kyuubi, the Nine-tailed Fox, attacked Konohagakure and wreaked havoc. In order to put an end to the Kyuubi's rampage, the leader of the village, the 4th Hokage, sacrificed his life and sealed the monstrous beast inside the newborn Naruto. \n\n\nShunned because of the presence of the Kyuubi inside him, Naruto struggles to find his place in the village. He strives to become the Hokage of Konohagakure, and he meets many friends and foes along the way. \n\n\n(Source: MAL Rewrite)", "titleNative": "NARUTO -ナルト-", "titleRomaji": "NARUTO", "countryOfOrigin": "JP" } ``` --- ### Search AniList Search — cari anime atau manga berdasarkan kata kunci. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/movie:anilist/search` - **Cache TTL:** 600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `q` | string | query | yes | Kata kunci pencarian judul anime atau manga | | `type` | enum(anime|manga) | query | no | Jenis media: anime atau manga. Default anime | | `sort` | enum(popularity|score|trending) | query | no | Urutan hasil: popularity, score, atau trending. Default popularity | | `page` | number | query | no | Nomor halaman (1,2,3...). Default 1 | | `count` | number | query | no | Jumlah hasil per halaman. Default 20, max 50 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/movie:anilist/search?q=naruto&type=anime&sort=popularity&page=1&count=20" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/movie:anilist/search?q=naruto&type=anime&sort=popularity&page=1&count=20", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/movie:anilist/search?q=naruto&type=anime&sort=popularity&page=1&count=20", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 20, "items": [ { "id": 20, "url": "https://anilist.co/anime/20", "type": "anime", "year": 2002, "color": "#e47850", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx20-dE6UHbFFg1A5.jpg", "malId": 20, "score": 80, "title": "Naruto", "format": "TV", "genres": [ "Action", "Adventure", "Comedy", "Drama", "Fantasy", "Supernatural" ], "season": "FALL", "status": "FINISHED", "episodes": 220, "popularity": 694193, "titleNative": "NARUTO -ナルト-", "titleRomaji": "NARUTO" }, { "id": 1735, "url": "https://anilist.co/anime/1735", "type": "anime", "year": 2007, "color": "#e4865d", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx1735-kGfVm0YqCPcu.png", "malId": 1735, "score": 82, "title": "Naruto: Shippuden", "format": "TV", "genres": [ "Action", "Adventure", "Comedy", "Drama", "Fantasy", "Supernatural" ], "season": "WINTER", "status": "FINISHED", "episodes": 500, "popularity": 584505, "titleNative": "NARUTO -ナルト- 疾風伝", "titleRomaji": "NARUTO: Shippuuden" }, { "id": 97938, "url": "https://anilist.co/anime/97938", "type": "anime", "year": 2017, "color": "#00c9ff", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx97938-BnF6M5yTaNB1.jpg", "malId": 34566, "score": 57, "title": "Boruto: Naruto Next Generations", "format": "TV", "genres": [ "Action", "Adventure", "Fantasy" ], "season": "SPRING", "status": "FINISHED", "episodes": 293, "popularity": 218566, "titleNative": "BORUTO-ボルト- NARUTO NEXT GENERATIONS", "titleRomaji": "BORUTO: NARUTO NEXT GENERATIONS" }, { "id": 16870, "url": "https://anilist.co/anime/16870", "type": "anime", "year": 2014, "color": "#e45d6b", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx16870-BD4K9rzlhCP4.jpg", "malId": 16870, "score": 76, "title": "The Last: Naruto the Movie", "format": "MOVIE", "genres": [ "Action", "Romance" ], "season": "FALL", "status": "FINISHED", "episodes": 1, "popularity": 137580, "titleNative": "THE LAST -NARUTO THE MOVIE-", "titleRomaji": "THE LAST: NARUTO THE MOVIE" }, { "id": 21220, "url": "https://anilist.co/anime/21220", "type": "anime", "year": 2015, "color": "#e46b50", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx21220-3cWAUtR1Ih5h.jpg", "malId": 28755, "score": 71, "title": "Boruto: Naruto the Movie", "format": "MOVIE", "genres": [ "Action", "Adventure", "Comedy" ], "season": "SUMMER", "status": "FINISHED", "episodes": 1, "popularity": 96451, "titleNative": "BORUTO -NARUTO THE MOVIE-", "titleRomaji": "BORUTO: NARUTO THE MOVIE" }, { "id": 13667, "url": "https://anilist.co/anime/13667", "type": "anime", "year": 2012, "color": "#e48650", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx13667-gAKuIXI2avRq.jpg", "malId": 13667, "score": 74, "title": "Road to Ninja: Naruto the Movie", "format": "MOVIE", "genres": [ "Action", "Adventure" ], "season": "SUMMER", "status": "FINISHED", "episodes": 1, "popularity": 70942, "titleNative": "ROAD TO NINJA -NARUTO THE MOVIE-", "titleRomaji": "ROAD TO NINJA: NARUTO THE MOVIE" }, { "id": 2472, "url": "https://anilist.co/anime/2472", "type": "anime", "year": 2007, "color": "#f1e450", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx2472-mYApVxceStn5.png", "malId": 2472, "score": 70, "title": "Naruto Shippuden the Movie", "format": "MOVIE", "genres": [ "Action", "Adventure", "Comedy", "Fantasy" ], "season": "SUMMER", "status": "FINISHED", "episodes": 1, "popularity": 56892, "titleNative": "劇場版 NARUTO -ナルト- 疾風伝", "titleRomaji": "NARUTO: Shippuuden Movie" }, { "id": 10589, "url": "https://anilist.co/anime/10589", "type": "anime", "year": 2011, "color": "#e45d6b", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx10589-VhXWWMm24Dso.jpg", "malId": 10589, "score": 72, "title": "Naruto Shippuden the Movie: Blood Prison", "format": "MOVIE", "genres": [ "Action", "Adventure", "Mystery" ], "season": "SUMMER", "status": "FINISHED", "episodes": 1, "popularity": 55918, "titleNative": "劇場版 NARUTO -ナルト- ブラッド・プリズン", "titleRomaji": "NARUTO: Blood Prison" }, { "id": 8246, "url": "https://anilist.co/anime/8246", "type": "anime", "year": 2010, "color": "#d6936b", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx8246-KAi3bLLdJ4OI.jpg", "malId": 8246, "score": 71, "title": "Naruto Shippuden the Movie: The Lost Tower", "format": "MOVIE", "genres": [ "Action", "Comedy" ], "season": "SUMMER", "status": "FINISHED", "episodes": 1, "popularity": 53606, "titleNative": "劇場版 NARUTO -ナルト- 疾風伝 ザ・ロストタワー", "titleRomaji": "NARUTO: Shippuuden - The Lost Tower" }, { "id": 4437, "url": "https://anilist.co/anime/4437", "type": "anime", "year": 2008, "color": "#f1935d", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx4437-8LQbBZo4N6yi.jpg", "malId": 4437, "score": 69, "title": "Naruto Shippuden the Movie: Bonds", "format": "MOVIE", "genres": [ "Action", "Supernatural" ], "season": "SUMMER", "status": "FINISHED", "episodes": 1, "popularity": 49751, "titleNative": "劇場版 NARUTO -ナルト- 疾風伝 絆", "titleRomaji": "NARUTO: Shippuuden - Kizuna" }, { "id": 6325, "url": "https://anilist.co/anime/6325", "type": "anime", "year": 2009, "color": "#f1a15d", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx6325-WaJPWmdnzgiI.jpg", "malId": 6325, "score": 70, "title": "Naruto Shippuden the Movie: The Will of Fire", "format": "MOVIE", "genres": [ "Action", "Comedy" ], "season": "SUMMER", "status": "FINISHED", "episodes": 1, "popularity": 46688, "titleNative": "劇場版 NARUTO -ナルト- 疾風伝 火の意志を継ぐ者", "titleRomaji": "NARUTO: Shippuuden - Hi no Ishi wo Tsugu Mono" }, { "id": 936, "url": "https://anilist.co/anime/936", "type": "anime", "year": 2005, "color": "#f18643", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx936-P1ogcIs07UR8.jpg", "malId": 936, "score": 65, "title": "Naruto the Movie: Legend of the Stone of Gelel", "format": "MOVIE", "genres": [ "Action", "Adventure", "Comedy", "Drama", "Fantasy", "Supernatural" ], "season": "SUMMER", "status": "FINISHED", "episodes": 1, "popularity": 45546, "titleNative": "劇場版 NARUTO -ナルト- 大激突!幻の地底遺跡だってばよ", "titleRomaji": "NARUTO: Dai Gekitotsu! Maboroshi no Chitei Iseki Dattebayo" }, { "id": 2144, "url": "https://anilist.co/anime/2144", "type": "anime", "year": 2006, "color": "#e48650", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx2144-9FITEzdGnlWC.jpg", "malId": 2144, "score": 66, "title": "Naruto the Movie: Guardians of the Crescent Moon Kingdom", "format": "MOVIE", "genres": [ "Action", "Adventure" ], "season": "SUMMER", "status": "FINISHED", "episodes": 1, "popularity": 40412, "titleNative": "劇場版 NARUTO -ナルト- 大興奮!みかづき島のアニマル騒動だってばよ", "titleRomaji": "NARUTO: Dai Koufun! Mikazukijima no Animal Panic Dattebayo!" }, { "id": 21579, "url": "https://anilist.co/anime/21579", "type": "anime", "year": 2016, "color": "#35aee4", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/21579-AKxouF9BidMD.jpg", "malId": 32365, "score": 70, "title": "Boruto: Naruto the Movie - The Day Naruto Became Hokage", "format": "SPECIAL", "genres": [ "Action", "Comedy" ], "season": "SUMMER", "status": "FINISHED", "episodes": 1, "popularity": 29823, "titleNative": "BORUTO -NARUTO THE MOVIE- ナルトが火影になった日", "titleRomaji": "BORUTO: NARUTO THE MOVIE - Naruto ga Hokage ni Natta Hi" }, { "id": 10686, "url": "https://anilist.co/anime/10686", "type": "anime", "year": 2011, "color": "#f1865d", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx10686-8ix95Jans8z6.png", "malId": 10686, "score": 68, "title": "NARUTO: Honoo no Chuunin Shiken! Naruto vs Konohamaru!!", "format": "MOVIE", "genres": [ "Action", "Adventure" ], "season": "SUMMER", "status": "FINISHED", "episodes": 1, "popularity": 22307, "titleNative": "NARUTO -ナルト- 炎の中忍試験! ナルトvs木ノ葉丸!!", "titleRomaji": "NARUTO: Honoo no Chuunin Shiken! Naruto vs Konohamaru!!" }, { "id": 19511, "url": "https://anilist.co/anime/19511", "type": "anime", "year": 2013, "color": "#e49350", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/n19511-8DIUleQ5KUgq.jpg", "malId": 19511, "score": 73, "title": "NARUTO: Shippuuden - Sunny Side Battle!!!", "format": "SPECIAL", "genres": [ "Action", "Comedy" ], "season": "FALL", "status": "FINISHED", "episodes": 1, "popularity": 20838, "titleNative": "NARUTO -ナルト- 疾風伝 サニー・サイド・バトル!!!", "titleRomaji": "NARUTO: Shippuuden - Sunny Side Battle!!!" }, { "id": 594, "url": "https://anilist.co/anime/594", "type": "anime", "year": 2003, "color": "#d6ae5d", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/594.jpg", "malId": 594, "score": 64, "title": "Naruto: The Lost Story - Mission: Protect the Waterfall Village", "format": "SPECIAL", "genres": [ "Action", "Adventure", "Comedy" ], "season": "WINTER", "status": "FINISHED", "episodes": 1, "popularity": 20138, "titleNative": "NARUTO -ナルト- 滝隠れの死闘 オレが英雄だってばよ!", "titleRomaji": "NARUTO: Takigakure no Shitou - Ore ga Eiyuu Dattebayo!" }, { "id": 155348, "url": "https://anilist.co/anime/155348", "type": "anime", "year": 2022, "color": "#f18650", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx155348-4ipji8SvTjyh.jpg", "malId": 53236, "score": 82, "title": "ROAD OF NARUTO", "format": "SPECIAL", "genres": [ "Action", "Adventure", "Drama", "Fantasy", "Supernatural" ], "season": "FALL", "status": "FINISHED", "episodes": 1, "popularity": 19975, "titleNative": "ROAD OF NARUTO", "titleRomaji": "ROAD OF NARUTO" }, { "id": 761, "url": "https://anilist.co/anime/761", "type": "anime", "year": 2003, "color": "#f17843", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/761.jpg", "malId": 761, "score": 62, "title": "NARUTO: Akaki Yotsuba no Clover wo Sagase", "format": "SPECIAL", "genres": [ "Adventure", "Comedy" ], "season": "SPRING", "status": "FINISHED", "episodes": 1, "popularity": 17884, "titleNative": "NARUTO -ナルト- 紅き四つ葉のクローバーを探せ", "titleRomaji": "NARUTO: Akaki Yotsuba no Clover wo Sagase" }, { "id": 1074, "url": "https://anilist.co/anime/1074", "type": "anime", "year": 2006, "color": "#e48628", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/1074.jpg", "malId": 1074, "score": 63, "title": "NARUTO: Narutimate Hero 3: Tsui ni Gekitotsu! Jounin VS Genin!! Musabetsu Dairansen Taikai Kaisai!!", "format": "OVA", "genres": [ "Adventure", "Comedy" ], "season": "WINTER", "status": "FINISHED", "episodes": 1, "popularity": 15413, "titleNative": "NARUTO -ナルト- ナルティメットヒーロー3 ついに激突! 上忍VS下忍!! 無差別大乱戦大会開催!!", "titleRomaji": "NARUTO: Narutimate Hero 3: Tsui ni Gekitotsu! Jounin VS Genin!! Musabetsu Dairansen Taikai Kaisai!!" } ], "total": 5000, "hasMore": true, "nextPage": 2 } ``` --- ### Seasonal AniList Seasonal — daftar anime per musim (season + tahun). - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/movie:anilist/seasonal` - **Cache TTL:** 21600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `season` | enum(WINTER|SPRING|SUMMER|FALL) | query | yes | Musim: WINTER, SPRING, SUMMER, atau FALL | | `year` | number | query | yes | Tahun musim (mis. 2024) | | `page` | number | query | no | Nomor halaman (1,2,3...). Default 1 | | `count` | number | query | no | Jumlah hasil per halaman. Default 20, max 50 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/movie:anilist/seasonal?season=SPRING&year=2024&page=1&count=20" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/movie:anilist/seasonal?season=SPRING&year=2024&page=1&count=20", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/movie:anilist/seasonal?season=SPRING&year=2024&page=1&count=20", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "year": 2024, "count": 20, "items": [ { "id": 153288, "url": "https://anilist.co/anime/153288", "type": "anime", "year": 2024, "color": "#f1e4ae", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx153288-25FBfFJzEQ5O.jpg", "malId": 52588, "score": 81, "title": "Kaiju No. 8", "format": "TV", "genres": [ "Action", "Sci-Fi" ], "season": "SPRING", "status": "FINISHED", "studios": [ "Production I.G", "Production I.G", "Studio Khara" ], "episodes": 12, "popularity": 263299, "titleNative": "怪獣8号", "titleRomaji": "Kaijuu 8-gou" }, { "id": 166240, "url": "https://anilist.co/anime/166240", "type": "anime", "year": 2024, "color": "#e4d6ae", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx166240-PBV7zukIHW7V.png", "malId": 55701, "score": 79, "title": "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc", "format": "TV", "genres": [ "Action", "Adventure", "Drama", "Fantasy", "Supernatural" ], "season": "SPRING", "status": "FINISHED", "studios": [ "ufotable", "ufotable" ], "episodes": 8, "popularity": 256187, "titleNative": "鬼滅の刃 柱稽古編", "titleRomaji": "Kimetsu no Yaiba: Hashira Geiko-hen" }, { "id": 166873, "url": "https://anilist.co/anime/166873", "type": "anime", "year": 2024, "color": "#6b431a", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx166873-xO0BRPkmwFll.png", "malId": 55888, "score": 83, "title": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", "format": "TV", "genres": [ "Adventure", "Drama", "Ecchi", "Fantasy" ], "season": "SPRING", "status": "FINISHED", "studios": [ "Studio Bind", "EGG FIRM" ], "episodes": 12, "popularity": 186316, "titleNative": "無職転生Ⅱ ~異世界行ったら本気だす~ 第2クール", "titleRomaji": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2" }, { "id": 163270, "url": "https://anilist.co/anime/163270", "type": "anime", "year": 2024, "color": "#288643", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx163270-wboZJp0ybwVK.jpg", "malId": 54900, "score": 77, "title": "WIND BREAKER", "format": "TV", "genres": [ "Action", "Comedy", "Drama" ], "season": "SPRING", "status": "FINISHED", "studios": [ "CloverWorks", "CloverWorks" ], "episodes": 13, "popularity": 178038, "titleNative": "WIND BREAKER", "titleRomaji": "WIND BREAKER" }, { "id": 156822, "url": "https://anilist.co/anime/156822", "type": "anime", "year": 2024, "color": "#e4785d", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx156822-Jzo2ITWgm4kM.jpg", "malId": 53580, "score": 78, "title": "That Time I Got Reincarnated as a Slime Season 3", "format": "TV", "genres": [ "Action", "Adventure", "Comedy", "Fantasy" ], "season": "SPRING", "status": "FINISHED", "studios": [ "8-bit", "8-bit" ], "episodes": 24, "popularity": 170318, "titleNative": "転生したらスライムだった件 第3期", "titleRomaji": "Tensei Shitara Slime Datta Ken 3rd Season" }, { "id": 163139, "url": "https://anilist.co/anime/163139", "type": "anime", "year": 2024, "color": "#2893e4", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx163139-JchZhUFlNTWU.jpg", "malId": 54789, "score": 82, "title": "My Hero Academia Season 7", "format": "TV", "genres": [ "Action", "Adventure" ], "season": "SPRING", "status": "FINISHED", "studios": [ "bones" ], "episodes": 21, "popularity": 170229, "titleNative": "僕のヒーローアカデミア 7", "titleRomaji": "Boku no Hero Academia 7" }, { "id": 136804, "url": "https://anilist.co/anime/136804", "type": "anime", "year": 2024, "color": "#3586e4", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx136804-7FVftG67FPBc.jpg", "malId": 49458, "score": 82, "title": "KONOSUBA -God's blessing on this wonderful world! 3", "format": "TV", "genres": [ "Action", "Adventure", "Comedy", "Ecchi", "Fantasy" ], "season": "SPRING", "status": "FINISHED", "studios": [ "Drive" ], "episodes": 11, "popularity": 168817, "titleNative": "この素晴らしい世界に祝福を!3", "titleRomaji": "Kono Subarashii Sekai ni Shukufuku wo! 3" }, { "id": 174788, "url": "https://anilist.co/anime/174788", "type": "anime", "year": 2024, "color": "#e4bb50", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx174788-9LsUnn0oEppv.jpg", "malId": 58125, "score": 86, "title": "LOOK BACK", "format": "MOVIE", "genres": [ "Drama", "Slice of Life" ], "season": "SPRING", "status": "FINISHED", "episodes": 1, "popularity": 114177, "titleNative": "ルックバック", "titleRomaji": "Look Back" }, { "id": 156415, "url": "https://anilist.co/anime/156415", "type": "anime", "year": 2024, "color": "#50e493", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx156415-zwP9deA786S1.jpg", "malId": 53516, "score": 73, "title": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", "format": "TV", "genres": [ "Action", "Adventure", "Fantasy" ], "season": "SPRING", "status": "FINISHED", "studios": [ "Tsumugi Akita Anime Lab" ], "episodes": 12, "popularity": 95423, "titleNative": "転生したら第七王子だったので、気ままに魔術を極めます", "titleRomaji": "Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu" }, { "id": 145728, "url": "https://anilist.co/anime/145728", "type": "anime", "year": 2024, "color": "#5093f1", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx145728-YUKXjN2E81Pq.jpg", "malId": 51122, "score": 79, "title": "Spice and Wolf: MERCHANT MEETS THE WISE WOLF", "format": "TV", "genres": [ "Adventure", "Fantasy", "Romance", "Slice of Life" ], "season": "SPRING", "status": "FINISHED", "studios": [ "Passione" ], "episodes": 25, "popularity": 94707, "titleNative": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", "titleRomaji": "Ookami to Koushinryou: MERCHANT MEETS THE WISE WOLF" }, { "id": 170130, "url": "https://anilist.co/anime/170130", "type": "anime", "year": 2024, "color": "#50a1e4", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx170130-tvhn13WYQ2qM.jpg", "malId": 56923, "score": 68, "title": "Chillin' in Another World with Level 2 Super Cheat Powers", "format": "TV", "genres": [ "Adventure", "Fantasy", "Romance" ], "season": "SPRING", "status": "FINISHED", "studios": [ "J.C.STAFF" ], "episodes": 12, "popularity": 91560, "titleNative": "Lv2からチートだった元勇者候補のまったり異世界ライフ", "titleRomaji": "Lv2 Kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life" }, { "id": 158417, "url": "https://anilist.co/anime/158417", "type": "anime", "year": 2024, "color": "#e4bb50", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx158417-Ii0DOFwNim0A.jpg", "malId": 53770, "score": 72, "title": "Go! Go! Loser Ranger!", "format": "TV", "genres": [ "Action", "Comedy", "Drama", "Sci-Fi" ], "season": "SPRING", "status": "FINISHED", "studios": [ "Yostar Pictures" ], "episodes": 12, "popularity": 75667, "titleNative": "戦隊大失格", "titleRomaji": "Sentai Daishikkaku" }, { "id": 156023, "url": "https://anilist.co/anime/156023", "type": "anime", "year": 2024, "color": "#50a1e4", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx156023-cY4NC8gCcAg7.jpg", "malId": 53434, "score": 73, "title": "An Archdemon's Dilemma: How to Love Your Elf Bride", "format": "TV", "genres": [ "Action", "Fantasy", "Romance" ], "season": "SPRING", "status": "FINISHED", "studios": [ "Brain's Base" ], "episodes": 12, "popularity": 72561, "titleNative": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", "titleRomaji": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?" }, { "id": 158898, "url": "https://anilist.co/anime/158898", "type": "anime", "year": 2024, "color": "#3593e4", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx158898-O3egiBNkxLQO.png", "malId": 53865, "score": 74, "title": "Mission: Yozakura Family", "format": "TV", "genres": [ "Action", "Comedy", "Romance" ], "season": "SPRING", "status": "FINISHED", "studios": [ "SILVER LINK.", "SILVER LINK.", "Studio Pierrot" ], "episodes": 27, "popularity": 69015, "titleNative": "夜桜さんちの大作戦", "titleRomaji": "Yozakura-san Chi no Daisakusen" }, { "id": 164702, "url": "https://anilist.co/anime/164702", "type": "anime", "year": 2024, "color": "#f1d6bb", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx164702-FjpM96MPdzVm.jpg", "malId": 55265, "score": 71, "title": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", "format": "TV", "genres": [ "Adventure", "Fantasy" ], "season": "SPRING", "status": "FINISHED", "studios": [ "studio MOTHER" ], "episodes": 12, "popularity": 68144, "titleNative": "転生貴族、鑑定スキルで成り上がる", "titleRomaji": "Tensei Kizoku, Kantei Skill de Nariagaru" }, { "id": 130590, "url": "https://anilist.co/anime/130590", "type": "anime", "year": 2024, "color": "#f1e4bb", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx130590-698sT7jWoz42.jpg", "malId": 48418, "score": 65, "title": "The Misfit of Demon King Academy II (Cour 2)", "format": "TV", "genres": [ "Action", "Fantasy" ], "season": "SPRING", "status": "FINISHED", "studios": [ "SILVER LINK." ], "episodes": 12, "popularity": 65925, "titleNative": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ 2クール", "titleRomaji": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II Part 2" }, { "id": 169417, "url": "https://anilist.co/anime/169417", "type": "anime", "year": 2024, "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx169417-izsfKg0hasRd.png", "malId": 56690, "score": 65, "title": "Re:Monster", "format": "TV", "genres": [ "Action", "Adventure", "Fantasy" ], "season": "SPRING", "status": "FINISHED", "studios": [ "Studio DEEN" ], "episodes": 12, "popularity": 65205, "titleNative": "Re:Monster", "titleRomaji": "Re:Monster" }, { "id": 164212, "url": "https://anilist.co/anime/164212", "type": "anime", "year": 2024, "color": "#fff143", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx164212-eKh15LQxkTEx.jpg", "malId": 55102, "score": 83, "title": "Girls Band Cry", "format": "TV", "genres": [ "Drama", "Music", "Slice of Life" ], "season": "SPRING", "status": "FINISHED", "studios": [ "Toei Animation" ], "episodes": 13, "popularity": 63111, "titleNative": "ガールズバンドクライ", "titleRomaji": "GIRLS BAND CRY" }, { "id": 163078, "url": "https://anilist.co/anime/163078", "type": "anime", "year": 2024, "color": "#e4c95d", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx163078-akhThKoWpWOb.jpg", "malId": 54839, "score": 76, "title": "Jellyfish Can’t Swim in the Night", "format": "TV", "genres": [ "Drama", "Music", "Slice of Life" ], "season": "SPRING", "status": "FINISHED", "studios": [ "Doga Kobo", "Doga Kobo" ], "episodes": 12, "popularity": 59844, "titleNative": "夜のクラゲは泳げない", "titleRomaji": "Yoru no Kurage wa Oyogenai" }, { "id": 158709, "url": "https://anilist.co/anime/158709", "type": "anime", "year": 2024, "color": "#5dbbe4", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx158709-WFA0RHloDvPl.jpg", "malId": 53835, "score": 66, "title": "Unnamed Memory", "format": "TV", "genres": [ "Adventure", "Fantasy", "Romance" ], "season": "SPRING", "status": "FINISHED", "studios": [ "ENGI" ], "episodes": 12, "popularity": 56596, "titleNative": "Unnamed Memory", "titleRomaji": "Unnamed Memory" } ], "total": 5000, "season": "SPRING", "hasMore": true, "nextPage": 2 } ``` --- ### Staff AniList Staff — detail satu staff / pengisi suara (VA) berdasarkan ID. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/movie:anilist/staff/:id` - **Cache TTL:** 21600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | number | path | yes | AniList staff ID (angka). Mis. staff/VA tertentu | **cURL:** ```bash curl "https://api.zpi.web.id/v1/movie:anilist/staff/:id" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/movie:anilist/staff/:id", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/movie:anilist/staff/:id", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "id": 95269, "age": 59, "url": "https://anilist.co/staff/95269", "name": "Mary Elizabeth McGlynn", "image": "https://s4.anilist.co/file/anilistcdn/staff/large/n95269-PhQ87wkVzLBb.jpg", "gender": "Female", "worksOn": [ { "id": 20, "type": "anime", "title": "Naruto", "format": "TV" }, { "id": 269, "type": "anime", "title": "Bleach", "format": "TV" }, { "id": 1, "type": "anime", "title": "Cowboy Bebop", "format": "TV" }, { "id": 5, "type": "anime", "title": "Cowboy Bebop: The Movie - Knockin' on Heaven's Door", "format": "MOVIE" }, { "id": 467, "type": "anime", "title": "Ghost in the Shell: Stand Alone Complex", "format": "TV" }, { "id": 202, "type": "anime", "title": "Wolf's Rain", "format": "TV" }, { "id": 202, "type": "anime", "title": "Wolf's Rain", "format": "TV" }, { "id": 874, "type": "anime", "title": "Digimon Tamers", "format": "TV" }, { "id": 522, "type": "anime", "title": "Metropolis", "format": "MOVIE" }, { "id": 1132, "type": "anime", "title": "Digimon Frontier", "format": "TV" } ], "language": "English", "favourites": 101, "dateOfBirth": "1966-10-16", "description": "Mary Elizabeth McGlynn is an American voice actress, ADR director and singer-songwriter best known for her involvement in music production in multiple games from the Silent Hill series, and her extensive English-language dubbing of various anime, animated films and video games.", "occupations": [ "Voice Actor" ], "voicedCharacters": [ { "id": 1795, "name": "Motoko Kusanagi" }, { "id": 16249, "name": "Naoto Shirogane" }, { "id": 797, "name": "Cornelia li Britannia" }, { "id": 4773, "name": "Kurenai Yuuhi" }, { "id": 23478, "name": "Mei Terumi" }, { "id": 806, "name": "Urd" }, { "id": 2017, "name": "Nuriko" }, { "id": 17705, "name": "Arshes Nei" }, { "id": 2735, "name": "Julia" }, { "id": 2992, "name": "Hilda" } ] } ``` --- ### Trending AniList Trending — daftar anime atau manga yang sedang tren saat ini. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/movie:anilist/trending` - **Cache TTL:** 1800s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `type` | enum(anime|manga) | query | no | Jenis media: anime atau manga. Default anime | | `page` | number | query | no | Nomor halaman (1,2,3...). Default 1 | | `count` | number | query | no | Jumlah hasil per halaman. Default 20, max 50 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/movie:anilist/trending?type=anime&page=1&count=20" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/movie:anilist/trending?type=anime&page=1&count=20", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/movie:anilist/trending?type=anime&page=1&count=20", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 20, "items": [ { "id": 182300, "url": "https://anilist.co/anime/182300", "type": "anime", "year": 2026, "color": "#e4a150", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx182300-IYkq5KrkQq1V.jpg", "malId": 59983, "score": 82, "title": "Wistoria: Wand and Sword Season 2", "format": "TV", "genres": [ "Action", "Adventure", "Drama", "Fantasy" ], "season": "SPRING", "status": "RELEASING", "episodes": 12, "trending": 634, "popularity": 87730, "titleNative": "杖と剣のウィストリア Season2", "titleRomaji": "Tsue to Tsurugi no Wistoria Season 2" }, { "id": 21, "url": "https://anilist.co/anime/21", "type": "anime", "year": 1999, "color": "#e49335", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx21-ELSYx3yMPcKM.jpg", "malId": 21, "score": 87, "title": "ONE PIECE", "format": "TV", "genres": [ "Action", "Adventure", "Comedy", "Drama", "Fantasy" ], "season": "FALL", "status": "RELEASING", "trending": 522, "popularity": 711295, "titleNative": "ONE PIECE", "titleRomaji": "ONE PIECE" }, { "id": 195600, "url": "https://anilist.co/anime/195600", "type": "anime", "year": 2026, "color": "#e49335", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx195600-moI0UFArtOme.jpg", "malId": 62001, "score": 78, "title": "Daemons of the Shadow Realm", "format": "TV", "genres": [ "Action", "Adventure", "Comedy", "Fantasy", "Supernatural" ], "season": "SPRING", "status": "RELEASING", "episodes": 24, "trending": 337, "popularity": 99812, "titleNative": "黄泉のツガイ", "titleRomaji": "Yomi no Tsugai" }, { "id": 206914, "url": "https://anilist.co/anime/206914", "type": "anime", "year": 2026, "color": "#35c9e4", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx206914-SHKX08LarRzB.jpg", "malId": 63375, "score": 81, "title": "NIPPON SANGOKU: The Three Nations of the Crimson Sun", "format": "ONA", "genres": [ "Action", "Drama", "Sci-Fi" ], "season": "SPRING", "status": "RELEASING", "episodes": 12, "trending": 234, "popularity": 40593, "titleNative": "日本三國", "titleRomaji": "Nippon Sangoku" }, { "id": 196187, "url": "https://anilist.co/anime/196187", "type": "anime", "year": 2026, "color": "#6b1a35", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx196187-cXhET893v3Ag.png", "malId": 62076, "title": "Smoking Behind the Supermarket with You", "format": "TV", "genres": [ "Comedy", "Romance", "Slice of Life" ], "season": "SUMMER", "status": "NOT_YET_RELEASED", "trending": 225, "popularity": 33586, "titleNative": "スーパーの裏でヤニ吸うふたり", "titleRomaji": "Super no Ura de Yani Suu Futari" }, { "id": 182205, "url": "https://anilist.co/anime/182205", "type": "anime", "year": 2026, "color": "#1abbd6", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx182205-q2AeO1owuQbO.jpg", "malId": 59970, "score": 81, "title": "That Time I Got Reincarnated as a Slime Season 4", "format": "TV", "genres": [ "Action", "Adventure", "Comedy", "Fantasy" ], "season": "SPRING", "status": "RELEASING", "trending": 196, "popularity": 97680, "titleNative": "転生したらスライムだった件 第4期", "titleRomaji": "Tensei Shitara Slime Datta Ken 4th Season" }, { "id": 147105, "url": "https://anilist.co/anime/147105", "type": "anime", "year": 2026, "color": "#0d8693", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx147105-rwOX8qyUy8gV.jpg", "malId": 51553, "score": 86, "title": "Witch Hat Atelier", "format": "ONA", "genres": [ "Adventure", "Drama", "Fantasy" ], "season": "SPRING", "status": "RELEASING", "episodes": 13, "trending": 183, "popularity": 170239, "titleNative": "とんがり帽子のアトリエ", "titleRomaji": "Tongari Boushi no Atelier" }, { "id": 269, "url": "https://anilist.co/anime/269", "type": "anime", "year": 2004, "color": "#f1a150", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx269-d2GmRkJbMopq.png", "malId": 269, "score": 79, "title": "Bleach", "format": "TV", "genres": [ "Action", "Adventure", "Supernatural" ], "season": "FALL", "status": "FINISHED", "episodes": 366, "trending": 134, "popularity": 485881, "titleNative": "BLEACH", "titleRomaji": "BLEACH" }, { "id": 189046, "url": "https://anilist.co/anime/189046", "type": "anime", "year": 2026, "color": "#e49350", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx189046-yaHWtS5FII46.jpg", "malId": 61316, "score": 88, "title": "Re:ZERO -Starting Life in Another World- Season 4", "format": "TV", "genres": [ "Action", "Adventure", "Drama", "Fantasy", "Psychological", "Romance" ], "season": "SPRING", "status": "RELEASING", "episodes": 19, "trending": 130, "popularity": 104009, "titleNative": "Re:ゼロから始める異世界生活 4th season", "titleRomaji": "Re:Zero kara Hajimeru Isekai Seikatsu 4th Season" }, { "id": 198113, "url": "https://anilist.co/anime/198113", "type": "anime", "year": 2026, "color": "#50aefe", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx198113-NRa47idWSlnx.jpg", "malId": 62391, "score": 73, "title": "KILL BLUE", "format": "TV", "genres": [ "Action", "Comedy" ], "season": "SPRING", "status": "RELEASING", "episodes": 12, "trending": 99, "popularity": 31253, "titleNative": "キルアオ", "titleRomaji": "Kill Ao" }, { "id": 180745, "url": "https://anilist.co/anime/180745", "type": "anime", "year": 2026, "color": "#aec9e4", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx180745-OEZaBeEdWozn.png", "malId": 59708, "score": 79, "title": "Classroom of the Elite 4th Season: Second Year, First Semester", "format": "TV", "genres": [ "Drama", "Psychological" ], "season": "SPRING", "status": "RELEASING", "episodes": 16, "trending": 96, "popularity": 94833, "titleNative": "ようこそ実力至上主義の教室へ 4th Season 2年生編1学期", "titleRomaji": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 4th Season 2-nensei-hen Ichi Gakki" }, { "id": 190704, "url": "https://anilist.co/anime/190704", "type": "anime", "year": 2026, "color": "#3586ff", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx190704-Ts1VvkrNdnCZ.jpg", "malId": 61501, "score": 67, "title": "Mistress Kanan is Devilishly Easy", "format": "TV", "genres": [ "Comedy", "Ecchi", "Fantasy", "Romance" ], "season": "SPRING", "status": "RELEASING", "episodes": 12, "trending": 93, "popularity": 37750, "titleNative": "カナン様はあくまでチョロい", "titleRomaji": "Kanan-sama wa Akumade Choroi" }, { "id": 182578, "url": "https://anilist.co/anime/182578", "type": "anime", "year": 2026, "color": "#50d6e4", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx182578-Te8W0EwesgrS.jpg", "malId": 60055, "score": 75, "title": "Mission: Yozakura Family Season 2", "format": "TV", "genres": [ "Action", "Comedy", "Romance" ], "season": "SPRING", "status": "RELEASING", "trending": 92, "popularity": 20411, "titleNative": "夜桜さんちの大作戦 第2期", "titleRomaji": "Yozakura-san Chi no Daisakusen 2nd Season" }, { "id": 190143, "url": "https://anilist.co/anime/190143", "type": "anime", "year": 2026, "color": "#e4865d", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx190143-IqqbkMAF0GOo.jpg", "malId": 61443, "score": 75, "title": "Agents of the Four Seasons: Dance of Spring", "format": "TV", "genres": [ "Drama", "Fantasy", "Romance" ], "season": "SPRING", "status": "RELEASING", "episodes": 14, "trending": 91, "popularity": 36578, "titleNative": "春夏秋冬代行者 春の舞", "titleRomaji": "Shunkashuutou Daikousha: Haru no Mai" }, { "id": 171110, "url": "https://anilist.co/anime/171110", "type": "anime", "year": 2026, "color": "#5daee4", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx171110-7zOdInS6DQNL.jpg", "malId": 57466, "score": 76, "title": "Ascendance of a Bookworm: Adopted Daughter of an Archduke", "format": "TV", "genres": [ "Drama", "Fantasy", "Slice of Life" ], "season": "SPRING", "status": "RELEASING", "trending": 90, "popularity": 31036, "titleNative": "本好きの下剋上 領主の養女", "titleRomaji": "Honzuki no Gekokujou: Ryoushu no Youjo" }, { "id": 199221, "url": "https://anilist.co/anime/199221", "type": "anime", "year": 2026, "color": "#e4d6ae", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx199221-TReDQMNhslHu.jpg", "malId": 62568, "score": 82, "title": "Dr. STONE SCIENCE FUTURE Cour 3", "format": "TV", "genres": [ "Action", "Adventure", "Comedy", "Sci-Fi" ], "season": "SPRING", "status": "RELEASING", "episodes": 13, "trending": 89, "popularity": 62177, "titleNative": "Dr.STONE SCIENCE FUTURE 3クール", "titleRomaji": "Dr. STONE: SCIENCE FUTURE Part 3" }, { "id": 169580, "url": "https://anilist.co/anime/169580", "type": "anime", "year": 2026, "color": "#f1bb50", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx169580-nXxpmqu6UVux.jpg", "malId": 56734, "score": 80, "title": "I Made Friends with the Second Prettiest Girl in My Class", "format": "TV", "genres": [ "Comedy", "Romance" ], "season": "SPRING", "status": "RELEASING", "episodes": 12, "trending": 89, "popularity": 67978, "titleNative": "クラスで2番目に可愛い女の子と友だちになった", "titleRomaji": "Class de 2-banme ni Kawaii Onnanoko to Tomodachi ni Natta" }, { "id": 186497, "url": "https://anilist.co/anime/186497", "type": "anime", "year": 2026, "color": "#e49343", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx186497-uwPrNPphXvjP.jpg", "malId": 60852, "score": 78, "title": "The Ramparts of Ice", "format": "TV", "genres": [ "Comedy", "Romance", "Slice of Life" ], "season": "SPRING", "status": "RELEASING", "trending": 88, "popularity": 48095, "titleNative": "氷の城壁", "titleRomaji": "Koori no Jouheki" }, { "id": 170019, "url": "https://anilist.co/anime/170019", "type": "anime", "year": 2026, "color": "#e4d628", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx170019-djbN0b934MhE.jpg", "malId": 56876, "score": 76, "title": "The Angel Next Door Spoils Me Rotten2", "format": "TV", "genres": [ "Romance", "Slice of Life" ], "season": "SPRING", "status": "RELEASING", "episodes": 12, "trending": 87, "popularity": 65431, "titleNative": "お隣の天使様にいつの間にか駄目人間にされていた件 第2期", "titleRomaji": "Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken 2nd Season" }, { "id": 199547, "url": "https://anilist.co/anime/199547", "type": "anime", "year": 2026, "color": "#1ae4f1", "image": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx199547-LAaG3cmKCGhr.jpg", "malId": 62601, "score": 75, "title": "MARRIAGETOXIN", "format": "TV", "genres": [ "Action", "Comedy", "Drama", "Romance" ], "season": "SPRING", "status": "RELEASING", "episodes": 13, "trending": 83, "popularity": 64222, "titleNative": "マリッジトキシン", "titleRomaji": "MARRIAGETOXIN" } ], "total": 5000, "hasMore": true, "nextPage": 2 } ``` --- _Generated: 2026-08-02T14:31:25.907Z_