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": 2,
  "logos": [
    {
      "aspect_ratio": 1,
      "file_path": "/bBjm7NLfF98ubOrZYsSjq3wjCa2.png",
      "file_type": ".png",
      "height": 600,
      "id": "65b25b686eecee0147343a82",
      "vote_average": 3.334,
      "vote_count": 1,
      "width": 600
    },
    {
      "aspect_ratio": 1,
      "file_path": "/2uy2ZWcplrSObIyt4x0Y9rkG6qO.png",
      "file_type": ".svg",
      "height": 977,
      "id": "61729f30176a940042b86d44",
      "vote_average": 2.278,
      "vote_count": 3,
      "width": 977
    },
    {
      "aspect_ratio": 1,
      "file_path": "/ndAvF4JLsliGreX87jAc9GdjmJY.png",
      "file_type": ".svg",
      "height": 1000,
      "id": "5bd745170e0a2622c3046964",
      "vote_average": 1.75,
      "vote_count": 6,
      "width": 1000
    },
    {
      "aspect_ratio": 1,
      "file_path": "/an88sKsFz0KX5CQngAM95WkncX4.png",
      "file_type": ".svg",
      "height": 316,
      "id": "5a7d218a0e0a263e82000117",
      "vote_average": 1.434,
      "vote_count": 5,
      "width": 316
    },
    {
      "aspect_ratio": 1,
      "file_path": "/2ZIBLeqgDCSenWLhdrFRCWjbGEQ.png",
      "file_type": ".png",
      "height": 1250,
      "id": "65e17fcda806730161a91e48",
      "vote_average": 0,
      "vote_count": 0,
      "width": 1250
    }
  ]
}

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

This represents the network ID. Get it here

Response

200 - application/json

Images

id
number
Example:

2

logos
object[]
Example:
[
  {
    "aspect_ratio": 1,
    "file_path": "/bBjm7NLfF98ubOrZYsSjq3wjCa2.png",
    "file_type": ".png",
    "height": 600,
    "id": "65b25b686eecee0147343a82",
    "vote_average": 3.334,
    "vote_count": 1,
    "width": 600
  },
  {
    "aspect_ratio": 1,
    "file_path": "/2uy2ZWcplrSObIyt4x0Y9rkG6qO.png",
    "file_type": ".svg",
    "height": 977,
    "id": "61729f30176a940042b86d44",
    "vote_average": 2.278,
    "vote_count": 3,
    "width": 977
  },
  {
    "aspect_ratio": 1,
    "file_path": "/ndAvF4JLsliGreX87jAc9GdjmJY.png",
    "file_type": ".svg",
    "height": 1000,
    "id": "5bd745170e0a2622c3046964",
    "vote_average": 1.75,
    "vote_count": 6,
    "width": 1000
  },
  {
    "aspect_ratio": 1,
    "file_path": "/an88sKsFz0KX5CQngAM95WkncX4.png",
    "file_type": ".svg",
    "height": 316,
    "id": "5a7d218a0e0a263e82000117",
    "vote_average": 1.434,
    "vote_count": 5,
    "width": 316
  },
  {
    "aspect_ratio": 1,
    "file_path": "/2ZIBLeqgDCSenWLhdrFRCWjbGEQ.png",
    "file_type": ".png",
    "height": 1250,
    "id": "65e17fcda806730161a91e48",
    "vote_average": 0,
    "vote_count": 0,
    "width": 1250
  }
]