Get Anime Information from Monoschinos

This endpoint allows you to retrieve anime information from Monoschinos.

  • Method: GET
  • Path: /anime/monoschinos/name/:name

URL parameters

ParameterTypeDescription
namestringName of the anime to search for in Monoschinos

Response

The response of this endpoint contains the information of the requested anime from Monoschinos.

{
  /** Name of the anime */
  "name": "string",
  /** Alternative names describing the name of the anime in another language */
  "alt_name?": "string | string[]",
  /** Anime identifier that can be used when the anime name is not used in the URL. */
  "id?": "number",
  /** The URL or location of the anime in the API */
  "url": "/anime/monoschinos/name/${string}",
  /** The anime synopsis */
  "synopsis?": "string",
  /**
   * An <a href="./image.ts">IImage</a> interface object representing the anime
   * image and its banner.
   */
  "image": {
    /** The URL of the content image */
    "url": "string",
    /**
     * The URL of the content banner. It is optional because it is not available
     * in all sites.
     */
    "banner?": "string"
  },
  /** The type of anime that indicates whether it is a movie, a special, TV, etc.. */
  "type?": "Anime | Movie | OVA | ONA | Null",
  /** Genres that apply to anime */
  "genres?": " string[]",
  /** Chronology of the anime. It is an array that contains the anime related to it. */
  "chronology?": {
    "name": "string",
    "url": "/anime/monoschinos/name/${string}",
    "image?": "string"
  },
  /**
   * The status of the anime indicating whether it is on air, finished
   * or still on hold.
   */
  "status?": "string | boolean",
  /** Indicates whether the anime is adult content. */
  "nsfw?": "Boolean"
}

Example of use

GET https://jimov-api.vercel.app/anime/monoschinos/name/one-piece
JavaScript
const response = await fetch(
  "https://jimov-api.vercel.app/anime/monoschinos/name/one-piece"
);
const data = await response.json();
console.log(data);
Python
 import requests

    response = requests.get("https://jimov-api.vercel.app/anime/monoschinos/name/one-piece")
    data = response.json()
    print(data)