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

Get Anime Episode Streaming Links

Technical details regarding the usage of the get anime streaming links function for the Crunchyroll 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/zoro/watch/{episodeId}

Path Parameters

ParameterTypeDescriptionRequired?Default
querystringThe search query; i.e. the title of the item you are looking for.Yes""

Request Samples

import axios from "axios";
 
/*
Using the example episode ID of 'classroom-of-the-elite-713$episode$12865', episode 1 of Classroom of the Elite.
*/
const url = "https://api.consumet.org/anime/zoro/watch/classroom-of-the-elite-713$episode$12865";
const data = async () => {
    try {
        const { data } = await axios.get(url);
        return data;
    } catch (err) {
        throw new Error(err.message);
    }
};
 
console.log(data);

Response Schema

MIME Type: application/json

{
  "sources": [
      {
          "url": "string",
          "quality": "string",
          "isM3U8": true
      }
  ],
  "subtitles": [
      {
          "url": "string",
          "lang": "string"
      }
  ],
  "intro": {
      "start": "number",
      "end": "number"
  }
}