GET
/
3
/
company
/
{company_id}
/
alternative_names
curl --request GET \
  --url https://api.themoviedb.org/3/company/{company_id}/alternative_names \
  --header 'Authorization: Bearer <token>'
{
  "id": 3268,
  "results": [
    {
      "name": "Home Box Office",
      "type": ""
    },
    {
      "name": "Home Box Office (HBO)",
      "type": ""
    },
    {
      "name": "HBO Entertainment",
      "type": ""
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

company_id
number
required

A unique identifier assigned to a company.

Example:

""

Response

200 - application/json
alternative names
id
number

the unique identifier of the company.

Example:

3268

results
object[]

This section contains an array of objects representing different names associated with the company.

Example:
[
  { "name": "Home Box Office", "type": "" },
  {
    "name": "Home Box Office (HBO)",
    "type": ""
  },
  { "name": "HBO Entertainment", "type": "" }
]