GET
/
3
/
network
/
{network_id}
/
images
Images
curl --request GET \
  --url https://api.themoviedb.org/3/network/{network_id}/images \
  --header 'Authorization: Bearer <token>'
{
  "id": 3268,
  "logos": [
    {
      "aspect_ratio": 2.99644128113879,
      "file_path": "/gNsvkmJY7QzRQ7AZ0QK9PeONIm2.png",
      "file_type": ".png",
      "height": 281,
      "id": "5f3432efef9d7200348dd5b8",
      "vote_average": 0,
      "vote_count": 0,
      "width": 842
    }
  ]
}

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

A unique integer identifier assigned to a specific network in the database.

Example:

""

Response

200 - application/json

images

The response is of type object.