Skip to content

Characters

Chris Tran edited this page Apr 29, 2021 · 6 revisions

Characters

An API query to https://impact.moe/api/characters/ will retrieve data on all characters in our database. To get data on a single character, pass a character's name. For example, to query data for Amber, make a query at https://impact.moe/api/characters/amber

List of available characters

Data member details

  • string : name
  • string : tier
  • string : rarity
  • string : weapon
  • string : element
  • string : description
  • string : region
    • The area in game the character hails from
  • string : faction
    • Character's affiliation
  • string : image
  • string : quote
  • string : icon
    • URL for character's tier list icon
  • string : squareCard
  • string : title
  • string : birthday
    • e.g. January 1st
  • string : constellation
    • Name of character's constellation (e.g. Lupus Minor)
  • string : chineseVA
    • Chinese voice actor name
    • Format: Romanization (Chinese characters)
      • e.g. Shuai Zhou (周帅)
  • string : japaneseVA
    • Japanese voice actor name
    • Format: Romanization (Kanji characters)
      • e.g. Koki Uchiyama (内山 昂輝)
  • string : englishVA
    • English voice actor name
  • string : koreanVA
    • Korean voice actor name
    • Format: Romanization (Korean characters)
      • e.g. Seo-yeong Kim (김서영)
  • JSON : talents
    • Default value: null
    • To expand, pass an expand parameter with the value talents
      • Expanding this will replace null with a list containing all of the character's talents. Each talent will have the following data:
        • name
        • description
        • image : URL to talent icon
        • type : Talent type (normal, elemental-burst, elemental-burst, passive-one, passive-two, passive-three)
  • JSON : constellations
    • Default value: null
    • To expand, pass an expand parameter with the value constellations
      • Expanding this will replace null with a list containing all of the character's constellations. Each constellation will have the following data:
        • name
        • description
        • order : rank of constellation (e.g. 1 means first constellation)
        • image : URL to constellation icon
  • JSON : roles
    • Default value: null
    • To expand, pass an expand parameter with the value roles
      • Expanding this will replace null with a list containing all of the data related to the recommended role (e.g. DPS, Support)
        • name : Recommended role
        • notes : Role tips in HTML format
        • weapons : List of recommended weapons for this role
        • artifacts : List of recommended artifacts for this role
        • mainStats : List of recommended artifact primary stats for this role
        • subStats : List of recommended artifact secondary stats for this role
  • JSON : characterOverview
    • Default value: null
    • To expand, pass an expand parameter with the value overview
      • Expanding this will replace null with a list containing the following:
        • abilityTips : Tips for best usage of character's talents
        • recommendedRole : Best role to play this character

Clone this wiki locally