GET
/
network
/
{network_id}
/
images
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
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

network_id
string
required

Response

200 - application/json

Fetch images

The response is of type object.