GET
/
3
/
company
/
{company_id}
/
images
curl --request GET \
  --url https://api.themoviedb.org/3/company/%7B{company_id}%7D/images \
  --header 'Authorization: Bearer <token>'
{
  "id": 198834,
  "logos": [
    {
      "aspect_ratio": 3.7243947858473,
      "file_path": "/tyHnxjQJLH6h4iDQKhN5iqebWmX.png",
      "file_type": ".svg",
      "height": 537,
      "id": "644b54af0c125505147ad0ec",
      "vote_average": 0,
      "vote_count": 0,
      "width": 2000
    }
  ]
}

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

This represents the company ID. Get it here

Response

200 - application/json

Images

The response is of type object.