GET
/
3
/
company
/
{company_id}
curl --request GET \
  --url https://api.themoviedb.org/3/company/{company_id} \
  --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.

Path Parameters

company_id
integer
required

a uniques identifier for companies

Example:

2

Response

200 - application/json

Details

The response is of type object.