AniList · JSON Structure

Anilist Charactername Structure

The names of the character

Type: object Properties: 8
AnimeMangaEntertainmentMediaSocialDatabaseGraphQLOAuth2Public APIs

CharacterName is a JSON Structure definition published by AniList, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

first middle last full native alternative alternativeSpoiler userPreferred

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

anilist-charactername-structure.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/anilist/refs/heads/main/json-structure/anilist-charactername-structure.json",
  "name": "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",
      "description": "Other names the character might be referred to as",
      "items": {
        "type": "string"
      }
    },
    "alternativeSpoiler": {
      "type": "array",
      "description": "Other names the character might be referred to as but are spoilers",
      "items": {
        "type": "string"
      }
    },
    "userPreferred": {
      "type": "string",
      "description": "The currently authenticated users preferred name language. Default romaji for non-authenticated"
    }
  }
}