Animixplay Routes

Search anime using Animixplay

Search anime from Animixplay

GET /animix/search?keyw={keyw}

Query Parameters

Name
Type
Description

keyw*

String

Keyword used to search for anime

[
    {
        "animeTitle": "Jujutsu Kaisen (TV)",
        "animeId": "jujutsu-kaisen-tv",
        "animeImg": "https://cachecow.eu/i/7802b28c9b08401ccf503d4ebf6c5004.jpg"
    },
    {...},
    {...}
]

Get latest released episodes from Animixplay

Get latest released episodes from Animixplay

GET /animix/recent-episodes

[
    {
        "episodeTitle": "Call of the Night",
        "animeId": "yofukashi-no-uta",
        "releaseTimeUnix": 1661449506,
        "mal_id": "50346",
        "episodeNum": "8",
        "episodes": "8/13",
        "animeImg": "https://cdn.animixplay.to/i/c3668266da90c7b66bc52152593e50bb.jpg"
    },
    {...}
]

Get anime info from Animixplay

Get anime info from Animixplay

GET /animix/info/:malId

Path Parameters

Name
Type
Description

malId*

integer

MyAnimeList ID of the anime, also received through some routes.

{
    "animeTitle": "One Piece",
    "animeId": "one-piece",
    "mal_id": 21,
    "animeImg": "https://cdn.myanimelist.net/images/anime/6/73245.jpg",
    "episodes": null,
    "status": "Currently Airing",
    "score": 8.65,
    "synopsis": "...",
    "genres": [
        "Action",
        "Adventure",
        "Fantasy"
    ],
    "studios": [
        "Toei Animation"
    ],
    "gogoAnimeLink": [
        {
        "url": "https://gogoanime.sk/category/one-piece",
        "title": "One Piece"
        },
        {
        "url": "https://gogoanime.sk/category/one-piece-dub",
        "title": "One Piece (Dub)"
        }
    ],
    "animepaheLink": [
        {
        "url": "https://animepahe.com/a/4",
        "title": "One Piece"
    }
    ],
    "zoroLink": [
        {
        "url": "https://zoro.to/one-piece-100",
        "title": "One Piece"
    }
    ]
}

Get anime episodes from Animixplay

Gets all the episodes of the series from animixplay

GET /animix/episodes/:animeId

Path Parameters

Name
Type
Description

animeId*

String

animeId (received from other api calls).

{
    "animeTitle": "One Piece",
    "mal_id": "21",
    "genres": "Action, Adventure, Fantasy, Shounen",
    "status": "Status : Ongoing",
    "total_episodes": 1026,
    "episodes": [
        {
        "epNum": 1,
        "link": "//goload.pro/streaming.php?id=MzUxOA==&title=One+Piece+Episode+1"
        },
        {
        "epNum": 2,
        "link": "//goload.pro/streaming.php?id=MzUyMQ==&title=One+Piece+Episode+2"
        },
        {...}
    ]
}

Get episode streaming URLs from Animixplay

Get episode streaming URLs from Animixplay

GET /animix/watch/:episodeId

Path Parameters

Name
Type
Description

episodeId*

String

episodeId = {animeId}-episode-{epNum}

{
    "animeId": "one-piece",
    "episodeNum": "1015",
    "sources": [
        {
            "file": "https://v.vrv.co/evs3/c925fcce0204d351a1e2c282862c3f2a/assets/66019d5a1dc3ae6644144f8543bffc55_,4449484.mp4,4449485.mp4,4449483.mp4,4449481.mp4,4449482.mp4,.urlset/master.m3u8........",
            "type": "hls"
        }
    ]
}

Last updated