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": 219390,
  "logos": [
    {
      "aspect_ratio": 14.285714285714286,
      "file_path": "/itmHJLbJcjEYcTo3FtIxXPdqsyn.png",
      "file_type": ".svg",
      "height": 21,
      "id": "66b2db0fa97ae81fad2b0bc5",
      "vote_average": 0,
      "vote_count": 0,
      "width": 300
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

company_id
string
required

Response

200 - application/json

Images Example

The response is of type object.