GET
/
3
/
company
/
{company_id}
/
images
curl --request GET \
  --url https://api.themoviedb.org/3/company/{company_id}/images \
  --header 'Authorization: Bearer <token>'
{
  "id": 3,
  "logos": [
    {
      "aspect_ratio": 4.768817204301075,
      "file_path": "/1TjvGVDMYsj6JBxOAkUHpPEwLf7.png",
      "file_type": ".svg",
      "height": 186,
      "id": "5aa7e2580e0a263dc101e6f4",
      "vote_average": 1.75,
      "vote_count": 4,
      "width": 887
    },
    {
      "aspect_ratio": 5.163265306122449,
      "file_path": "/z65MpjahUMRimaSusbAYZ7XP3mc.png",
      "file_type": ".png",
      "height": 245,
      "id": "6493b74e9a358d00c59633bc",
      "vote_average": 1.75,
      "vote_count": 2,
      "width": 1265
    },
    {
      "aspect_ratio": 6.183574879227053,
      "file_path": "/bqGuVkQKYSGixzO9YA6q8PCIWjT.png",
      "file_type": ".png",
      "height": 207,
      "id": "656acc110859b4013951005b",
      "vote_average": 1.222,
      "vote_count": 3,
      "width": 1280
    }
  ]
}

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

Images

The response is of type object.