GET
/
3
/
company
/
{company_id}
Details
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

description
string
Example:

""

headquarters
string
Example:

"Burbank, California"

homepage
string
Example:

"https://movies.disney.com"

id
number
Example:

2

logo_path
string
Example:

"/wdrCwmRnLFJhEoH8GSfymY85KHT.png"

name
string
Example:

"Walt Disney Pictures"

origin_country
string
Example:

"US"

parent_company
any