Obtain anime information by name

This endpoint allows you to obtain information about an anime in AnimeFlv.

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

URL parameters

ParameterTypeDescription
namestringName of the anime to search for in AnimeFlv

Response

The response from this endpoint contains the requested anime information in AnimeFlv.

{
  /** 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/flv/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/flv/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/flv/name/wonder-egg-priority
JavaScript
const response = await fetch(
  "https://jimov-api.vercel.app/anime/flv/name/wonder-egg-priority"
);
const data = await response.json();
console.log(data);
Python
import requests
response = requests.get("https://jimov-api.vercel.app/anime/flv/name/wonder-egg-priority")
data = response.json()
print(data)