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
Parameter | Type | Description | Required? | Default |
---|---|---|---|---|
id | string | The ID of the anime which the episodeId belongs to. | Yes | |
episodeId | string | The episodeId. Usually in the format: ep-1 , etc. | Yes |
Query Parameters
Parameter | Type | Description | Required? | Default |
---|---|---|---|---|
server | Enum: "vidstream" "vidhide" "streamwish" "mp4upload" | The server from which to extract streaming links. | No | "vidstream" |
type | Enum: "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
}
]
}