Characters

Description: Shows information about characters from movies, TV shows, books, or other media.

API Response Structure:

{
  "items": [
    {
      "name": "Character Name",
      "role": "Main Character",
      "hasLink": true,
      "hasImage": true,
      "details": {
        "portrayer": "Actor Name",
        "firstAppearance": "Season1, Episode 1",
        "status": "Active",
        "species": "Human",
        "occupation": "Detective
      },
      "relationships": [
        {
          "character": "Other Character",
          "relationship": "Sibling"
        }
      ],
      "appearances": {
        "episodes": 45,
        "seasons": [1, 2, 3]
      }
    }
  ],
  "type": "characters"
}

Fields:

  • items (array): Character listings

    • name (string): Character name

    • role (string): Character role

    • hasLink (boolean): Profile link available

    • hasImage (boolean): Character image

    • details (object): Character information

    • relationships (array): Character connections

    • appearances (object): Show appearances

  • type (string): Always "characters"