🚧 The Consumet documentation is undergoing reconstruction. Please be patient for all providers to be fully-documented. 🚧
API
Anime
Anix
Get Anime Episode Streaming Links

Get Anime Episode Streaming Links

Technical details regarding the usage of the get anime streaming links function for the Anix provider can be found below. Example code is provided for both JavaScript and Python, along with a response schema.

Route Schema (URL)

https://api.consumet.org/anime/anix/watch/{id}/{episodeId}?server={serverName}&type={type}

Path Parameters

ParameterTypeDescriptionRequired?Default
idstringThe ID of the anime which the episodeId belongs to.Yes
episodeIdstringThe episodeId. Usually in the format: ep-1, etc.Yes

Query Parameters

ParameterTypeDescriptionRequired?Default
serverEnum: "vidstream" "vidhide" "streamwish" "mp4upload"The server from which to extract streaming links.No"vidstream"
typeEnum: "sub" "dub" "raw"The type. Either sub, dub or raw.No"sub"

Request Samples

import axios from "axios";
 
/*
Using the example episode ID of 'darling-in-the-franxx'
and the example episode ID `ep-1`,
explicitly defining default server for demostrative purposes.
*/
const url = "https://api.consumet.org/anime/anix/watch/darling-in-the-franxx/ep-1?server=vidstream&type=sub"
const data = async () => {
    try {
        const { data } = await axios.get(url, { params: {
            "server": "vidstream",
            "type": "sub"
        } });
        return data;
    } catch (err) {
        throw new Error(err.message);
    }
};
 
console.log(data);

Response Schema

MIME Type: application/json

{
  "headers": {
      "Referer": "string"
  },
  "sources": [
      {
      "url": "string",
      "quality": "string",
      "isM3U8": true
      }
  ]
}