GET
/
company
/
{company_id}
curl --request GET \
  --url https://api.themoviedb.org/3/company/%7B{company_id}%7D \
  --header 'Authorization: Bearer <token>'
{
  "description": "",
  "headquarters": "Los Angeles, California",
  "homepage": "http://convergence-ent.com/",
  "id": 7417,
  "logo_path": "/13GyIWMzFvDqJN6I6tZCQYzWr7L.png",
  "name": "Convergence Entertainment",
  "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
string
required

Response

200 - application/json

Fetch company details

The response is of type object.