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

Get Anime Episode Streaming Links

Technical details regarding the usage of the get anime streaming links function for the enime 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/enime/watch?episodeId={episodeId}&server={serverName}

Query Parameters

ParameterTypeDescriptionRequired?Default
querystringThe search query; i.e. the title of the item you are looking for.Yes""
serverEnum: ""The page number of results to return.No"gogocdn"

Request Samples

import axios from "axios";
 
/*
Using the example episode ID of 'cl6opep533728801rtgam010jha',
explicitly defining default server for demostrative purposes.
*/
const url = "https://api.consumet.org/anime/enime/watch?episodeId=cl6opep533728801rtgam010jha";
const data = async () => {
    try {
        const { data } = await axios.get(url, { params: {
          id: "cl6opep533728801rtgam010jha",
          server: "gogocdn"
        }});
        return data;
    } catch (err) {
        throw new Error(err.message);
    }
};
 
console.log(data);

Response Schema

MIME Type: application/json

{
  "headers": {
      "Referer": "string",
      "watchsb": "string", // or null, since only provided with server being equal to "streamsb".
      "User-Agent": "string" // or null
  },
  "sources": [
      {
      "url": "string",
      "quality": "string",
      "isM3U8": true
      }
  ]
}