Data
TV person credits (TVmaze) API
All TV cast credits for a TVmaze person id: shows, played character, type, premiere year, status, network and genres, sorted newest first (TVmaze). Answers 'what shows is person 13 in', 'Bryan Cranston TV roles', 'filmography of an actor by TVmaze id'.
Price$0.01per request
MethodPOST
Route/v1/data/screen-person-credits
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
datatvcreditsactorstvmazefilmographyrolesscreen
API URL
Integration docshttps://x402.hexl.dev/v1/data/screen-person-creditsExample request
{
"personId": 13,
"limit": 1
}Example response
{
"personId": 13,
"count": 1,
"credits": [
{
"showId": 169,
"show": "Breaking Bad",
"character": "Walter White",
"type": "Scripted",
"premiered": "2008-01-20",
"status": "Ended",
"genres": [
"Drama",
"Crime",
"Thriller"
],
"network": "AMC",
"self": false,
"voice": false,
"showUrl": "https://www.tvmaze.com/shows/169/breaking-bad"
}
]
}Input schema
{
"type": "object",
"required": [
"personId"
],
"properties": {
"personId": {
"type": "number",
"examples": [
13
]
},
"limit": {
"type": "number",
"default": 50
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}