curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/alternative_titles \
--header 'Authorization: Bearer <token>'
{
"id": 112470,
"results": [
{
"iso_3166_1": "CN",
"title": "一切从这里开始",
"type": ""
},
{
"iso_3166_1": "ES",
"title": "Aquí Empieza Todo",
"type": ""
},
{
"iso_3166_1": "FR",
"title": "Ici tout commence",
"type": ""
},
{
"iso_3166_1": "US",
"title": "Where it All Begins",
"type": ""
}
]
}
This endpoint allows you to get the alternative titles that have been added to a TV show.
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/alternative_titles \
--header 'Authorization: Bearer <token>'
{
"id": 112470,
"results": [
{
"iso_3166_1": "CN",
"title": "一切从这里开始",
"type": ""
},
{
"iso_3166_1": "ES",
"title": "Aquí Empieza Todo",
"type": ""
},
{
"iso_3166_1": "FR",
"title": "Ici tout commence",
"type": ""
},
{
"iso_3166_1": "US",
"title": "Where it All Begins",
"type": ""
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Fetch alternative titles
The response is of type object
.