Film Characters
Description: Shows information about characters from movies or TV shows.
API Response Structure:
{
"characters": [
{
"name": "Character Name",
"actor": "Actor Name",
"image": "https://example.com/character.jpg",
"role": {
"type": "Main Character/Supporting",
"description": "Character description..."
},
"appearances": {
"firstAppearance": "Season 1, Episode 1",
"lastAppearance": "Season 3, Episode 10",
"episodeCount": 25
},
"relationships": [
{
"character": "Other Character",
"relationship": "Friend/Enemy/Family"
}
],
"quotes": [
{
"text": "Famous quote",
"episode": "S01E01"
}
],
"development": {
"arc": "Character development summary",
"keyMoments": ["Moment 1", "Moment 2"]
}
}
],
"production": {
"title": "Show/Movie Title",
"year": "2023",
"creator": "Creator Name"
},
"type": "filmCharacters"
}
Fields:
-
characters
(array): Character information-
name
(string): Character name -
actor
(string): Actor name -
image
(string): Character image -
role
(object): Character role -
appearances
(object): Show appearances -
relationships
(array): Character connections -
quotes
(array): Notable quotes -
development
(object): Character arc
-
-
production
(object): Show information -
type
(string): Always "filmCharacters"