GET
/
3
/
company
/
2
curl --request GET \
  --url https://api.themoviedb.org/3/company/2 \
  --header 'Authorization: Bearer <token>'
{
  "description": "",
  "headquarters": "Burbank, California",
  "homepage": "https://movies.disney.com",
  "id": 2,
  "logo_path": "/wdrCwmRnLFJhEoH8GSfymY85KHT.png",
  "name": "Walt Disney Pictures",
  "origin_country": "US",
  "parent_company": null
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Get company details

The response is of type object.