GET
/
company
/
{company_id}
/
images
curl --request GET \
  --url https://api.themoviedb.org/3/company/%7B{company_id}%7D/images \
  --header 'Authorization: Bearer <token>'
{
  "id": 20312,
  "logos": [
    {
      "aspect_ratio": 1,
      "file_path": "/iYmytRQt5jqlBIEaMQ0Cb6iAHh8.png",
      "file_type": ".svg",
      "height": 204,
      "id": "64578ba8fe077a015675d398",
      "vote_average": 0,
      "vote_count": 0,
      "width": 204
    }
  ]
}

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

Fetch company logos

The response is of type object.