Skip to main content
GET
/
company
/
{company_id}
/
images
Fetch company logos
curl --request GET \
  --url 'https://api.themoviedb.org/3/company/{{company_id}}/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

id
number
Example:

20312

logos
object[]
Example:
[
  {
    "aspect_ratio": 1,
    "file_path": "/iYmytRQt5jqlBIEaMQ0Cb6iAHh8.png",
    "file_type": ".svg",
    "height": 204,
    "id": "64578ba8fe077a015675d398",
    "vote_average": 0,
    "vote_count": 0,
    "width": 204
  }
]