Kuzen API
A unified REST API to fetch anime data from multiple Indonesian sources. No authentication required — just send a GET request and receive structured JSON.
Base URL
http://localhost:3051
All endpoints are prefixed with
/api/{source}
Response Format
All endpoints return a consistent JSON structure:
"status": "success",
"data": {
"data": [ /* array of items */ ],
"hasNextPage": true
}
}
Aggregator (V3 Standard)
Unified multi-source search engine. Automatically sanitizes and groups results by title.
Base path: /api/anime
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| q | string | required | Keyword pencarian (e.g. "tenseishi") |
[
{
"title": "Naruto",
"thumb": "https://...",
"available_sources": [
{
"source": "otakudesu",
"id": "naruto-sub-indo",
"endpoint": "/api/otakudesu/detail/..."
},
{
"source": "animasu",
"id": "naruto",
"endpoint": "/api/animasu/detail/..."
}
]
}
]
Animeplay
Data source: animekompi.fun · Base path:
/api/animeplay
Returns homepage data including latest episode updates, top trending anime, new series, and latest batch.
{
"status": "success",
"data": [
{ "type": "latest_episodes", "data": [...] },
{ "type": "trending", "data": [...] },
{ "type": "new_series", "data": [...] },
{ "type": "latest_batch", "data": [...] }
]
}
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| page | string | optional | Page number (default: 1) |
{
"status": "success",
"data": {
"data": [
{
"id": "one-piece",
"title": "One Piece",
"image_url": "https://...",
"latest_episode": "1122",
"rating": "8.7",
"type": "tv",
"status": "Ongoing"
}
],
"hasNextPage": true
}
}
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| page | string | optional | Page number (default: 1) |
Returns the most popular anime list ordered by popularity.
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| q | string | required | Keyword pencarian |
| page | string | optional | Page number (default: 1) |
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| slug | string | required |
Slug anime, contoh:
one-piece
|
{
"status": "success",
"data": {
"title": "One Piece",
"episodeList": [ { "title": "Ep 1122", "id": "..." } ],
"thumb": "..."
}
}
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| slug | string | required |
Slug episode, contoh:
one-piece-episode-1122
|
Returns weekly broadcast schedule grouped by day.
GET /api/animeplay/genre/action?page=1
Animasu
Data source: animasu.cc · Base path:
/api/animasu
{
"status": "success",
"data": {
"title": "One Piece",
"episodeList": [ { "title": "Episode 1122", "id": "..." } ],
"thumb": "..."
}
}
{
"status": "success",
"data": {
"title": "One Piece Episode 1122",
"serverList": [ { "serverName": "Default", "url": "..." } ]
}
}
GET /api/animasu/genres/action?page=1
Otakudesu
Data source: otakudesu.cloud · Base path:
/api/otakudesu
{
"status": "success",
"data": {
"title": "One Piece",
"episodeList": [ { "title": "Episode 1122", "id": "..." } ],
"thumb": "..."
}
}
{
"status": "success",
"data": {
"title": "One Piece Episode 1122",
"serverList": [
{ "serverName": "Vidhide (720p)", "url": "..." },
{ "serverName": "Moedesu (480p)", "url": "..." }
]
}
}
GET /api/otakudesu/genres/action?page=1
Nimegami
Scraper untuk Nimegami.id. Mendukung latest update, search, detail, dan watch dengan normalisasi data V3.
Menampilkan daftar anime terbaru yang diupdate di Nimegami.
Mencari anime berdasarkan kata kunci.
Menampilkan info lengkap anime beserta daftar episode.
Mengembalikan daftar server player MP4 untuk streaming.
Winbu
Scraper untuk Winbu.net. Menyediakan database anime lengkap, search, detail, dan multi-server player serta link download.
Menampilkan daftar episode anime terbaru dari Winbu.
Mengembalikan daftar server player dan link download per resolusi.
Kusonime
Scraper untuk Kusonime.com. Khusus untuk download batch anime. Tidak mendukung fitur watch/streaming.
Menampilkan daftar batch anime terbaru yang diupdate di Kusonime.
Mencari batch anime berdasarkan kata kunci.
Menampilkan info lengkap anime beserta daftar link download langsung (G-Drive, Terabox, dll).
KeBioskop21
Movies and Korean Drama provider with episode pagination support.
Returns a list of latest movies and drama from the home page.
Query Parameters
| Param | Type | Req | Description |
|---|---|---|---|
| q | string | YES | Search keyword |
Returns full details including synopsis, metadata, and episode list for series.
Returns the video player iframe URL along with full metadata (synopsis, thumb, info, episodes). For series, provide the episode number as the second parameter.
Path Parameters
| Param | Type | Req | Description |
|---|---|---|---|
| slug | string | YES | Content slug |
| episode | string | OPT | Episode number (e.g. "2") |