ACCOUNT
- Endpoints
AUTHENTICATION
- Endpoints
CERTIFICATIONS
- Endpoints
CHANGES
- Endpoints
COLLECTIONS
- Endpoints
COMPANIES
CONFIGURATION
- Endpoints
CREDITS
FIND
GENRES
GUEST-SESSIONS
KEYWORDS
MOVIES
PEOPLE
PEOPLE-LISTS
REVIEWS
TV-EPISODE-GROUPS
TV-EPISODES
TV-SEASONS
TV-SERIES
TV-SERIES-LISTS
WATCH-PROVIDERS
Endpoints
Images
This endpoint gets the company logos by id.
GET
/
3
/
company
/
{company_id}
/
images
Copy
curl --request GET \
--url https://api.themoviedb.org/3/company/%7B{company_id}%7D/images \
--header 'Authorization: Bearer <token>'
Copy
{
"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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Images Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/company/%7B{company_id}%7D/images \
--header 'Authorization: Bearer <token>'
Copy
{
"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
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.