Catalog/screen-show-cast

Data

TV show cast (TVmaze) API

Full principal cast for a TVmaze show id: actor name, played character, voice/self flags, country and headshot, deduped by person+character (TVmaze). Answers 'who is in show 169', 'cast of Breaking Bad', 'who plays Walter White'.

Price$0.01per request
MethodPOST
Route/v1/data/screen-show-cast
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
datatvcastactorstvmazecharacterstelevisionscreen
API URLhttps://x402.hexl.dev/v1/data/screen-show-cast
Integration docs
Example request
{
  "showId": 169,
  "limit": 2
}
Example response
{
  "showId": 169,
  "count": 2,
  "cast": [
    {
      "personId": 13,
      "person": "Bryan Cranston",
      "character": "Walter White",
      "self": false,
      "voice": false,
      "country": "United States",
      "image": "https://static.tvmaze.com/uploads/images/original_untouched/0/13.jpg",
      "personUrl": "https://www.tvmaze.com/people/13/bryan-cranston"
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "showId"
  ],
  "properties": {
    "showId": {
      "type": "number",
      "examples": [
        169
      ]
    },
    "limit": {
      "type": "number",
      "default": 30
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}