Data
TV show crew (TVmaze) API
Behind-the-camera crew for a TVmaze show id: creators, producers, writers and more, grouped by department/role (TVmaze). Answers 'who created show 169', 'crew of Breaking Bad', 'who are the executive producers'.
Price$0.01per request
MethodPOST
Route/v1/data/screen-show-crew
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
datatvcrewproducerstvmazecreatorstelevisionscreen
API URL
Integration docshttps://x402.hexl.dev/v1/data/screen-show-crewExample request
{
"showId": 169,
"limit": 2
}Example response
{
"showId": 169,
"count": 2,
"crew": [
{
"type": "Creator",
"personId": 24578,
"person": "Vince Gilligan",
"country": "United States",
"image": null,
"personUrl": "https://www.tvmaze.com/people/24578/vince-gilligan"
}
],
"byDepartment": {
"Creator": [
"Vince Gilligan"
],
"Executive Producer": [
"Mark Johnson"
]
}
}Input schema
{
"type": "object",
"required": [
"showId"
],
"properties": {
"showId": {
"type": "number",
"examples": [
169
]
},
"limit": {
"type": "number",
"default": 50
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}