Endpoints
- AUTHENTICATION
- ACCOUNT
- CERTIFICATIONS
- CHANGES
- COLLECTIONS
- COMPANY
- CONFIGURATION
- CREDIT
- DISCOVER
- FIND
- GENRES
- GUEST SESSIONS
- KEYWORDS
- LISTS
- MOVIE LISTS
- MOVIES
- REVIEWS
- NETWORKS
- PEOPLE LIST
- PEOPLE
- SEARCH
- TRENDING
- TV SERIES LIST
- TV SERIES
- TV SEASONS
- TV EPISODES
- TV EPISODE GROUP
- WATCH PROVIDERS
MOVIES
Alternative Titles
This endpoint get the alternative titles for a movie.
GET
/
3
/
movie
/
{movie_id}
/
alternative_titles
Copy
curl --request GET \
--url https://api.themoviedb.org/3/movie/{movie_id}/alternative_titles \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 558449,
"titles": [
{
"iso_3166_1": "US",
"title": "Gladiator 2",
"type": ""
},
{
"iso_3166_1": "IT",
"title": "Il gladiatore 2",
"type": "provisional title"
},
{
"iso_3166_1": "IL",
"title": "גלדיאטור 2",
"type": ""
},
{
"iso_3166_1": "TR",
"title": "Gladyatör II",
"type": ""
},
{
"iso_3166_1": "TR",
"title": "Gladyatör 2",
"type": ""
},
{
"iso_3166_1": "BG",
"title": "Гладиатор II",
"type": ""
},
{
"iso_3166_1": "KR",
"title": "글래디에이터 2",
"type": ""
},
{
"iso_3166_1": "AZ",
"title": "Qladiator II",
"type": ""
},
{
"iso_3166_1": "US",
"title": "GladiatorⅡ",
"type": ""
},
{
"iso_3166_1": "JP",
"title": "グラディエーターII 英雄を呼ぶ声",
"type": ""
},
{
"iso_3166_1": "HK",
"title": "帝國驕雄 2",
"type": ""
},
{
"iso_3166_1": "US",
"title": "GladIIator",
"type": ""
},
{
"iso_3166_1": "BR",
"title": "Gladiador 2",
"type": ""
},
{
"iso_3166_1": "CN",
"title": "角斗士2",
"type": ""
},
{
"iso_3166_1": "KR",
"title": "글래디에이터Ⅱ",
"type": ""
},
{
"iso_3166_1": "KR",
"title": "글래디에이터 II",
"type": ""
},
{
"iso_3166_1": "AM",
"title": "Գլադիատոր 2",
"type": ""
},
{
"iso_3166_1": "CA",
"title": "Gladiateur II",
"type": ""
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
This is a unique identifier for a movie.
Example:
""
Query Parameters
This parameter allows you to specify an ISO-3166-1 code. By including this parameter, you can filter the results to show alternative titles for the specified movie that are recognized in that particular country.
Response
200 - application/json
alternative titles
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/movie/{movie_id}/alternative_titles \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 558449,
"titles": [
{
"iso_3166_1": "US",
"title": "Gladiator 2",
"type": ""
},
{
"iso_3166_1": "IT",
"title": "Il gladiatore 2",
"type": "provisional title"
},
{
"iso_3166_1": "IL",
"title": "גלדיאטור 2",
"type": ""
},
{
"iso_3166_1": "TR",
"title": "Gladyatör II",
"type": ""
},
{
"iso_3166_1": "TR",
"title": "Gladyatör 2",
"type": ""
},
{
"iso_3166_1": "BG",
"title": "Гладиатор II",
"type": ""
},
{
"iso_3166_1": "KR",
"title": "글래디에이터 2",
"type": ""
},
{
"iso_3166_1": "AZ",
"title": "Qladiator II",
"type": ""
},
{
"iso_3166_1": "US",
"title": "GladiatorⅡ",
"type": ""
},
{
"iso_3166_1": "JP",
"title": "グラディエーターII 英雄を呼ぶ声",
"type": ""
},
{
"iso_3166_1": "HK",
"title": "帝國驕雄 2",
"type": ""
},
{
"iso_3166_1": "US",
"title": "GladIIator",
"type": ""
},
{
"iso_3166_1": "BR",
"title": "Gladiador 2",
"type": ""
},
{
"iso_3166_1": "CN",
"title": "角斗士2",
"type": ""
},
{
"iso_3166_1": "KR",
"title": "글래디에이터Ⅱ",
"type": ""
},
{
"iso_3166_1": "KR",
"title": "글래디에이터 II",
"type": ""
},
{
"iso_3166_1": "AM",
"title": "Գլադիատոր 2",
"type": ""
},
{
"iso_3166_1": "CA",
"title": "Gladiateur II",
"type": ""
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.