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
Movies
Alternative Title
This endpoint retrieves the alternative titles of a particular movie.
GET
/
3
/
movie
/
{movie_id}
/
alternative_titles
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/alternative_titles \
--header 'Authorization: Bearer <token>'
{
"id": 845781,
"titles": [
{
"iso_3166_1": "US",
"title": "Big Red One",
"type": "working title"
},
{
"iso_3166_1": "HU",
"title": "Vörös Egyes!",
"type": "Kedvcsináló cím"
},
{
"iso_3166_1": "CN",
"title": "红色一号",
"type": ""
},
{
"iso_3166_1": "RO",
"title": "Misiunea Red One",
"type": ""
},
{
"iso_3166_1": "CA",
"title": "Nom de code : rouge",
"type": ""
},
{
"iso_3166_1": "ES",
"title": "Código: Traje rojo",
"type": ""
},
{
"iso_3166_1": "AR",
"title": "Código: Traje rojo",
"type": ""
},
{
"iso_3166_1": "MX",
"title": "Código: Traje rojo",
"type": ""
},
{
"iso_3166_1": "EC",
"title": "Código: Traje rojo",
"type": ""
},
{
"iso_3166_1": "TW",
"title": "紅色一號",
"type": "Prime Video title"
}
]
}
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/movie/%7B{movie_id}%7D/alternative_titles \
--header 'Authorization: Bearer <token>'
{
"id": 845781,
"titles": [
{
"iso_3166_1": "US",
"title": "Big Red One",
"type": "working title"
},
{
"iso_3166_1": "HU",
"title": "Vörös Egyes!",
"type": "Kedvcsináló cím"
},
{
"iso_3166_1": "CN",
"title": "红色一号",
"type": ""
},
{
"iso_3166_1": "RO",
"title": "Misiunea Red One",
"type": ""
},
{
"iso_3166_1": "CA",
"title": "Nom de code : rouge",
"type": ""
},
{
"iso_3166_1": "ES",
"title": "Código: Traje rojo",
"type": ""
},
{
"iso_3166_1": "AR",
"title": "Código: Traje rojo",
"type": ""
},
{
"iso_3166_1": "MX",
"title": "Código: Traje rojo",
"type": ""
},
{
"iso_3166_1": "EC",
"title": "Código: Traje rojo",
"type": ""
},
{
"iso_3166_1": "TW",
"title": "紅色一號",
"type": "Prime Video title"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.