GET
/
3
/
company
/
{company_id}
/
images
curl --request GET \
  --url https://api.themoviedb.org/3/company/{company_id}/images \
  --header 'Authorization: Bearer <token>'
{
  "id": 3268,
  "logos": [
    {
      "aspect_ratio": 2.425287356321839,
      "file_path": "/tuomPhY2UtuPTqqFnKMVHvSb724.png",
      "file_type": ".svg",
      "height": 174,
      "id": "5aa1688c9251416105009d28",
      "vote_average": 3.334,
      "vote_count": 1,
      "width": 422
    }
  ]
}

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
images
id
number

A unique identifier for the company

Example:

3268

logos
object[]

This is a graphical representations or brand images associated with a company.

Example:
[
  {
    "aspect_ratio": 2.425287356321839,
    "file_path": "/tuomPhY2UtuPTqqFnKMVHvSb724.png",
    "file_type": ".svg",
    "height": 174,
    "id": "5aa1688c9251416105009d28",
    "vote_average": 3.334,
    "vote_count": 1,
    "width": 422
  }
]