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": 2,
  "results": [
    {
      "name": "Disney Pictures",
      "type": ""
    },
    {
      "name": "월트 디즈니 픽처스",
      "type": ""
    },
    {
      "name": "Disney",
      "type": ""
    },
    {
      "name": "Walt Disney",
      "type": ""
    },
    {
      "name": "Walt Disney Productions",
      "type": ""
    },
    {
      "name": "华特迪士尼公司",
      "type": ""
    },
    {
      "name": "迪士尼影片公司",
      "type": ""
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

company_id
integer
required

a uniques identifier for companies

Example:

2

Response

200 - application/json

Alternative Names

The response is of type object.