AniList · Schema

CharacterName

The names of the character

AnimeMangaEntertainmentMediaSocialDatabaseGraphQLOAuth2Public APIs

Properties

Name Type Description
first string The character's given name
middle string The character's middle name
last string The character's surname
full string The character's first and last name
native string The character's full name in their native language
alternative array Other names the character might be referred to as
alternativeSpoiler array Other names the character might be referred to as but are spoilers
userPreferred string The currently authenticated users preferred name language. Default romaji for non-authenticated
View JSON Schema on GitHub

JSON Schema

anilist-charactername-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-charactername-schema.json",
  "title": "CharacterName",
  "description": "The names of the character",
  "type": "object",
  "properties": {
    "first": {
      "type": "string",
      "description": "The character's given name"
    },
    "middle": {
      "type": "string",
      "description": "The character's middle name"
    },
    "last": {
      "type": "string",
      "description": "The character's surname"
    },
    "full": {
      "type": "string",
      "description": "The character's first and last name"
    },
    "native": {
      "type": "string",
      "description": "The character's full name in their native language"
    },
    "alternative": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Other names the character might be referred to as"
    },
    "alternativeSpoiler": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Other names the character might be referred to as but are spoilers"
    },
    "userPreferred": {
      "type": "string",
      "description": "The currently authenticated users preferred name language. Default romaji for non-authenticated"
    }
  }
}