AniList · Schema

MediaTitle

The official titles of the media in various languages

AnimeMangaEntertainmentMediaSocialDatabaseGraphQLOAuth2Public APIs

Properties

Name Type Description
romaji string The romanization of the native language title
english string The official english title
native string Official title in it's native language
userPreferred string The currently authenticated users preferred title language. Default romaji for non-authenticated
View JSON Schema on GitHub

JSON Schema

anilist-mediatitle-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/anilist/refs/heads/main/json-schema/anilist-mediatitle-schema.json",
  "title": "MediaTitle",
  "description": "The official titles of the media in various languages",
  "type": "object",
  "properties": {
    "romaji": {
      "type": "string",
      "description": "The romanization of the native language title"
    },
    "english": {
      "type": "string",
      "description": "The official english title"
    },
    "native": {
      "type": "string",
      "description": "Official title in it's native language"
    },
    "userPreferred": {
      "type": "string",
      "description": "The currently authenticated users preferred title language. Default romaji for non-authenticated"
    }
  }
}