curl --request GET \
--url https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}/translations \
--header 'Authorization: Bearer <token>'{
"id": 31098,
"translations": [
{
"iso_3166_1": "US",
"iso_639_1": "en",
"name": "English",
"english_name": "English",
"data": {
"name": "The Window",
"overview": "While cleaning the windows, Alf gets stuck on the ledge."
}
},
{
"iso_3166_1": "DE",
"iso_639_1": "de",
"name": "Deutsch",
"english_name": "German",
"data": {
"name": "",
"overview": ""
}
},
{
"iso_3166_1": "NL",
"iso_639_1": "nl",
"name": "Nederlands",
"english_name": "Dutch",
"data": {
"name": "",
"overview": ""
}
}
]
}This endpoint is used to get the translations that have been added to a TV episode.
curl --request GET \
--url https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}/translations \
--header 'Authorization: Bearer <token>'{
"id": 31098,
"translations": [
{
"iso_3166_1": "US",
"iso_639_1": "en",
"name": "English",
"english_name": "English",
"data": {
"name": "The Window",
"overview": "While cleaning the windows, Alf gets stuck on the ledge."
}
},
{
"iso_3166_1": "DE",
"iso_639_1": "de",
"name": "Deutsch",
"english_name": "German",
"data": {
"name": "",
"overview": ""
}
},
{
"iso_3166_1": "NL",
"iso_639_1": "nl",
"name": "Nederlands",
"english_name": "Dutch",
"data": {
"name": "",
"overview": ""
}
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The series ID of the tv series
The season number of the tv series
The episode number is the tv series