Skip to main content
GET
/
company
/
{company_id}
Details
curl --request GET \
  --url https://api.themoviedb.org/3/company/{company_id} \
  --header 'Authorization: Bearer <token>'
{
  "headquarters": "Hollywood, California",
  "homepage": "https://www.paramountpictures.com",
  "id": 4,
  "logo_path": "/gz66EfNoYPqHTYI4q9UEN4CbHRc.png",
  "name": "Paramount Pictures",
  "origin_country": "US",
  "parent_company": {
    "name": "Viacom International",
    "id": 5308,
    "logo_path": 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

The ID of the company to retrieve

Response

200 - application/json

Successful

headquarters
string

The location of the company's headquarters

homepage
string

The official website URL of the company

id
string

A unique identifier for the company

logo_path
string

The file path or URL to the company's logo image

name
string

The official name of the company

origin_country
string

The country where the company was founded

parent_company
array

The name of the parent company, if applicable