Get the TV network logos by id.
curl --request GET \
--url https://api.themoviedb.org/3/network/49/images \
--header 'Authorization: Bearer <token>'
{
"id": 49,
"logos": [
{
"aspect_ratio": 2.4242424242424243,
"file_path": "/hizvY65SpyF3BPY2qsBZMgUOxjs.png",
"file_type": ".png",
"height": 495,
"id": "63e7979663aad200858726da",
"vote_average": 3.334,
"vote_count": 1,
"width": 1200
},
{
"aspect_ratio": 2.425287356321839,
"file_path": "/tuomPhY2UtuPTqqFnKMVHvSb724.png",
"file_type": ".svg",
"height": 174,
"id": "5a7a67a40e0a26020a000091",
"vote_average": 2.278,
"vote_count": 3,
"width": 422
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
New Request
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/network/49/images \
--header 'Authorization: Bearer <token>'
{
"id": 49,
"logos": [
{
"aspect_ratio": 2.4242424242424243,
"file_path": "/hizvY65SpyF3BPY2qsBZMgUOxjs.png",
"file_type": ".png",
"height": 495,
"id": "63e7979663aad200858726da",
"vote_average": 3.334,
"vote_count": 1,
"width": 1200
},
{
"aspect_ratio": 2.425287356321839,
"file_path": "/tuomPhY2UtuPTqqFnKMVHvSb724.png",
"file_type": ".svg",
"height": 174,
"id": "5a7a67a40e0a26020a000091",
"vote_average": 2.278,
"vote_count": 3,
"width": 422
}
]
}