Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
TV Series
Alternative Titles
This endpoint retrieves the alternative titles of a TV show.
GET
/
3
/
tv
/
{series_id}
/
alternative_titles
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/alternative_titles \
--header 'Authorization: Bearer <token>'
{
"id": 93405,
"results": [
{
"iso_3166_1": "BR",
"title": "Round 6 (Squid Game)",
"type": ""
},
{
"iso_3166_1": "CN",
"title": "鱿鱼游戏",
"type": ""
},
{
"iso_3166_1": "ES",
"title": "El juego del calamar",
"type": ""
},
{
"iso_3166_1": "IL",
"title": "משחקי הדיונון",
"type": ""
},
{
"iso_3166_1": "IL",
"title": "אתגר הדיונון",
"type": ""
},
{
"iso_3166_1": "IN",
"title": "विद्रूप खेल",
"type": ""
},
{
"iso_3166_1": "IR",
"title": "بازی مرکب",
"type": "translate"
},
{
"iso_3166_1": "IR",
"title": "بازی ماهی مرکب",
"type": "translate"
},
{
"iso_3166_1": "JP",
"title": "イカゲーム",
"type": ""
},
{
"iso_3166_1": "KR",
"title": "Ojingeo Geim",
"type": "Revised romanization"
},
{
"iso_3166_1": "KR",
"title": "Ojingeo Game",
"type": "Revised romanization"
},
{
"iso_3166_1": "KR",
"title": "오징어 게임",
"type": ""
},
{
"iso_3166_1": "KR",
"title": "오징어게임",
"type": ""
},
{
"iso_3166_1": "SE",
"title": "Squid Game",
"type": ""
},
{
"iso_3166_1": "TR",
"title": "Kalamar Oyunu",
"type": "translate"
},
{
"iso_3166_1": "UA",
"title": "Гра у кальмара",
"type": ""
},
{
"iso_3166_1": "US",
"title": "Round Six",
"type": "working title"
},
{
"iso_3166_1": "US",
"title": "Squid Game",
"type": ""
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Alternative Titles
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/alternative_titles \
--header 'Authorization: Bearer <token>'
{
"id": 93405,
"results": [
{
"iso_3166_1": "BR",
"title": "Round 6 (Squid Game)",
"type": ""
},
{
"iso_3166_1": "CN",
"title": "鱿鱼游戏",
"type": ""
},
{
"iso_3166_1": "ES",
"title": "El juego del calamar",
"type": ""
},
{
"iso_3166_1": "IL",
"title": "משחקי הדיונון",
"type": ""
},
{
"iso_3166_1": "IL",
"title": "אתגר הדיונון",
"type": ""
},
{
"iso_3166_1": "IN",
"title": "विद्रूप खेल",
"type": ""
},
{
"iso_3166_1": "IR",
"title": "بازی مرکب",
"type": "translate"
},
{
"iso_3166_1": "IR",
"title": "بازی ماهی مرکب",
"type": "translate"
},
{
"iso_3166_1": "JP",
"title": "イカゲーム",
"type": ""
},
{
"iso_3166_1": "KR",
"title": "Ojingeo Geim",
"type": "Revised romanization"
},
{
"iso_3166_1": "KR",
"title": "Ojingeo Game",
"type": "Revised romanization"
},
{
"iso_3166_1": "KR",
"title": "오징어 게임",
"type": ""
},
{
"iso_3166_1": "KR",
"title": "오징어게임",
"type": ""
},
{
"iso_3166_1": "SE",
"title": "Squid Game",
"type": ""
},
{
"iso_3166_1": "TR",
"title": "Kalamar Oyunu",
"type": "translate"
},
{
"iso_3166_1": "UA",
"title": "Гра у кальмара",
"type": ""
},
{
"iso_3166_1": "US",
"title": "Round Six",
"type": "working title"
},
{
"iso_3166_1": "US",
"title": "Squid Game",
"type": ""
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.