Skip to main content
GET
/
3
/
movie
/
18
/
alternative_titles
Get alternative titles
curl --request GET \
  --url https://api.themoviedb.org/3/movie/18/alternative_titles \
  --header 'Authorization: Bearer <token>'
{
  "id": 18,
  "titles": [
    {
      "iso_3166_1": "US",
      "title": "The Fifth Element: Remastered",
      "type": ""
    },
    {
      "iso_3166_1": "AD",
      "title": "El cinquè element",
      "type": ""
    },
    {
      "iso_3166_1": "US",
      "title": "The 5th Element",
      "type": "alternate spelling"
    },
    {
      "iso_3166_1": "FR",
      "title": "Le 5ème élément",
      "type": ""
    },
    {
      "iso_3166_1": "FR",
      "title": "Le cinquième élément",
      "type": ""
    },
    {
      "iso_3166_1": "KR",
      "title": "제5원소",
      "type": ""
    },
    {
      "iso_3166_1": "KR",
      "title": "제 5 원소",
      "type": ""
    },
    {
      "iso_3166_1": "KR",
      "title": "제 5원소",
      "type": ""
    },
    {
      "iso_3166_1": "HK",
      "title": "第五元素",
      "type": ""
    },
    {
      "iso_3166_1": "TW",
      "title": "第五元素",
      "type": ""
    },
    {
      "iso_3166_1": "ES",
      "title": "El quinto elemento",
      "type": "Castilian Spanish"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

movie_id
integer
required

A unique identifier for a movie

Example:

18

Query Parameters

country
string

An ISO-3166-1 country code used to filter the results to the specified country. E.g NG for Nigeria

Example:

"NG"

Response

200 - application/json

Request successful

id
number
Example:

18

titles
object[]
Example:
[
{
"iso_3166_1": "US",
"title": "The Fifth Element: Remastered",
"type": ""
},
{
"iso_3166_1": "AD",
"title": "El cinquè element",
"type": ""
},
{
"iso_3166_1": "US",
"title": "The 5th Element",
"type": "alternate spelling"
},
{
"iso_3166_1": "FR",
"title": "Le 5ème élément",
"type": ""
},
{
"iso_3166_1": "FR",
"title": "Le cinquième élément",
"type": ""
},
{
"iso_3166_1": "KR",
"title": "제5원소",
"type": ""
},
{
"iso_3166_1": "KR",
"title": "제 5 원소",
"type": ""
},
{
"iso_3166_1": "KR",
"title": "제 5원소",
"type": ""
},
{
"iso_3166_1": "HK",
"title": "第五元素",
"type": ""
},
{
"iso_3166_1": "TW",
"title": "第五元素",
"type": ""
},
{
"iso_3166_1": "ES",
"title": "El quinto elemento",
"type": "Castilian Spanish"
}
]
I