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

Get Recent Episodes

Technical details regarding the usage of the get recent anime episodes 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/recent-episodes?page={page}&type={type}

Query Parameters

ParameterTypeDescriptionRequired?Default
pageintegerThe page number of results to return.No1
typeintegerThe type of anime to get. 1: ANIME; 2: DONGHUA; 3: SUB; 4: DUB; Blank: ALLNoALL

Request Samples

import axios from "axios";
 
const url = "https://api.consumet.org/anime/anix/recent-episodes?page=1&type=1";
const data = async () => {
    try {
        const { data } = await axios.get(url, { params: { "page": 1, "type": 1 } });
        return data;
    } catch (err) {
        throw new Error(err.message);
    }
};
 
console.log(data);

Response Schema

MIME Type: application/json

{
  "currentPage": 0,
  "hasNextPage": true,
  "results": [
    {
      "id": "string",
      "episodeId": "string",
      "episodeNumber": 0,
      "title": "string",
      "englishTitle": "string",
      "image": "string",
      "url": "string",
      "type": "string"
    }
  ]
}