Skip to main content
GET
/
company
/
{company_id}
/
images
Images
curl --request GET \
  --url https://api.themoviedb.org/3/company/{company_id}/images \
  --header 'Authorization: Bearer <token>'
{
  "id": 1,
  "logos": [
    {
      "aspect_ratio": 3.0395136778115504,
      "file_path": "/tlVSws0RvvtPBwViUyOFAO0vcQS.png",
      "height": 329,
      "id": "63306b352b8a430096598b3d",
      "file_type": ".svg",
      "vote_average": 3.334,
      "vote_count": 2,
      "width": 1000
    },
    {
      "aspect_ratio": 2.9797979797979797,
      "file_path": "/o86DbpburjxrqAzEDhXZcyE8pDb.png",
      "height": 99,
      "id": "5aa080d6c3a3683fea00011e",
      "file_type": ".svg",
      "vote_average": 2.278,
      "vote_count": 3,
      "width": 295
    }
  ]
}
There are two image formats that are supported for companies, PNG’s and SVG’s. You can see which type the original file is by looking at the file_type field.

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

id
integer

A unique identifier representing the specific logo

A list of logo images associated with the movie, TV show