curl --request GET \
--url https://api.themoviedb.org/3/network/%7B{network_id}%7D/images \
--header 'Authorization: Bearer <token>'
{
"id": 19,
"logos": [
{
"aspect_ratio": 2.3255813953488373,
"file_path": "/1DSpHrWyOORkL9N2QHX7Adt31mQ.png",
"file_type": ".svg",
"height": 430,
"id": "5a7a673a0e0a26021f000036",
"vote_average": 2.278,
"vote_count": 3,
"width": 1000
}
]
}
This endpoint allows you to get TV network logos by ID.
curl --request GET \
--url https://api.themoviedb.org/3/network/%7B{network_id}%7D/images \
--header 'Authorization: Bearer <token>'
{
"id": 19,
"logos": [
{
"aspect_ratio": 2.3255813953488373,
"file_path": "/1DSpHrWyOORkL9N2QHX7Adt31mQ.png",
"file_type": ".svg",
"height": 430,
"id": "5a7a673a0e0a26021f000036",
"vote_average": 2.278,
"vote_count": 3,
"width": 1000
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Fetch images
The response is of type object
.