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
}
]
}
This endpoint allows you to get the company logos by id.
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
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Fetch company logos
The response is of type object
.