Endpoints
- Account
- Authentication
- Certification
- Changes
- Collections
- Companies
- Configuration
- Credits
- Discover
- Find
- Genres
- Guest Session
- Keywords
- List
- Movie Lists
- Movies
- Networks
- People Lists
- People
- Reviews
- Search
- Trending
- TV Series Lists
- TV Series
- TV Seasons
- TV Episodes
- TV Episode Groups
- Watch Providers
- API Reference
Movies
Alternative Titles
Get the alternative titles for a movie.
GET
/
3
/
movie
/
{movie_id}
/
alternative_titles
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/alternative_titles
{
"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"
}
]
}
Path Parameters
Response
200 - application/json
Alt Titles
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/alternative_titles
{
"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"
}
]
}