GET
/
3
/
company
/
{company_id}
curl --request GET \
  --url https://api.themoviedb.org/3/company/{company_id} \
  --header 'Authorization: Bearer <token>'
{
  "description": "",
  "headquarters": "New York City, New York",
  "homepage": "https://www.hbo.com",
  "id": 3268,
  "logo_path": "/tuomPhY2UtuPTqqFnKMVHvSb724.png",
  "name": "HBO",
  "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
number
required

A unique identifier assigned to a company.

Example:

""

Response

200 - application/json
details
description
string

A textual overview of the company or organization.

Example:

""

headquarters
string

The location of the company’s main office or operational center.

Example:

"New York City, New York"

homepage
string

The official website of the company, providing information about its services, offerings, and contact details.

Example:

"https://www.hbo.com"

id
number

the unique identifier of the company.

Example:

3268

logo_path
string

The file path for the company’s logo, typically used to display the brand image visually.

Example:

"/tuomPhY2UtuPTqqFnKMVHvSb724.png"

name
string

The official name of the company or organization.

Example:

"HBO"

origin_country
string

The country where the company was established or primarily operates.

Example:

"US"

parent_company
any | null