Skip to main content
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": 12,
  "logos": [
    {
      "aspect_ratio": 2.5161290322580645,
      "file_path": "/eJSYeF1YIyQbZdTRNxuvVKaZOIK.png",
      "file_type": ".svg",
      "height": 62,
      "id": "5a8776570e0a2653db04855e",
      "vote_average": 3.334,
      "vote_count": 2,
      "width": 156
    },
    {
      "aspect_ratio": 1.0194805194805194,
      "file_path": "/7wuTb7iMz5yLoJ8hIyBnUxqR3mP.png",
      "file_type": ".svg",
      "height": 154,
      "id": "5a8f49d60e0a2639b2004c52",
      "vote_average": 0.166,
      "vote_count": 1,
      "width": 157
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

network_id
integer
required
Example:

12

Response

200 - application/json

Images

id
number
Example:

12

logos
object[]
Example:
[
{
"aspect_ratio": 2.5161290322580645,
"file_path": "/eJSYeF1YIyQbZdTRNxuvVKaZOIK.png",
"file_type": ".svg",
"height": 62,
"id": "5a8776570e0a2653db04855e",
"vote_average": 3.334,
"vote_count": 2,
"width": 156
},
{
"aspect_ratio": 1.0194805194805194,
"file_path": "/7wuTb7iMz5yLoJ8hIyBnUxqR3mP.png",
"file_type": ".svg",
"height": 154,
"id": "5a8f49d60e0a2639b2004c52",
"vote_average": 0.166,
"vote_count": 1,
"width": 157
}
]
I