Data
TV show alternate titles (TVmaze) API
International alternate titles (AKAs) for a TVmaze show id, mapped to the country/region they are used in, with global titles labelled (TVmaze). Answers 'what is show 169 called in Germany', 'alternate titles of Breaking Bad', 'international names for a show'.
Price$0.01per request
MethodPOST
Route/v1/data/screen-show-akas
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
datatvakastitlestvmazelocalizationinternationalscreen
API URL
Integration docshttps://x402.hexl.dev/v1/data/screen-show-akasExample request
{
"showId": 169
}Example response
{
"showId": 169,
"count": 2,
"akas": [
{
"name": "Breaking Bad",
"country": "Global",
"countryCode": null
},
{
"name": "Во все тяжкие",
"country": "Russia",
"countryCode": "RU"
}
]
}Input schema
{
"type": "object",
"required": [
"showId"
],
"properties": {
"showId": {
"type": "number",
"examples": [
169
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}