GET
/
tv
/
{series_id}
/
alternative_titles
curl --request GET \
  --url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/alternative_titles \
  --header 'Authorization: Bearer <token>'
{
  "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

The response is of type object.