GET
/
tv
/
{series_id}
/
alternative_titles
{
  "id": 112470,
  "results": [
    {
      "iso_3166_1": "CN",
      "title": "一切从这里开始",
      "type": ""
    },
    {
      "iso_3166_1": "ES",
      "title": "Aquí Empieza Todo",
      "type": ""
    },
    {
      "iso_3166_1": "FR",
      "title": "Ici tout commence",
      "type": ""
    },
    {
      "iso_3166_1": "US",
      "title": "Where it All Begins",
      "type": ""
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

series_id
string
required

Response

200 - application/json

Fetch alternative titles

id
number
Example:

112470

results
object[]
Example:
[
{
"iso_3166_1": "CN",
"title": "一切从这里开始",
"type": ""
},
{
"iso_3166_1": "ES",
"title": "Aquí Empieza Todo",
"type": ""
},
{
"iso_3166_1": "FR",
"title": "Ici tout commence",
"type": ""
},
{
"iso_3166_1": "US",
"title": "Where it All Begins",
"type": ""
}
]