GET
/
3
/
list
/
{list_id}
curl --request GET \
  --url https://api.themoviedb.org/3/list/%7B{list_id}%7D \
  --header 'Authorization: Bearer <token>'
{
  "created_by": "Gloria Tejuosho",
  "description": "",
  "favorite_count": 0,
  "id": 8504994,
  "iso_639_1": "en",
  "item_count": 1,
  "items": [
    {
      "adult": false,
      "backdrop_path": "/7yD0xhcx600Ng2XBElVE4eN4bE7.jpg",
      "genre_ids": [
        28,
        878
      ],
      "id": 32740,
      "media_type": "movie",
      "original_language": "hi",
      "original_title": "कृष",
      "overview": "In Singapore, Krishna is forced by circumstances to use his superpowers and become a masked superhero named Krrish, before getting drawn towards his lost legacy.",
      "popularity": 11.536,
      "poster_path": "/Apd4UKesyTmpDutEjNVHP45kvBi.jpg",
      "release_date": "2006-06-23",
      "title": "Krrish",
      "video": false,
      "vote_average": 6.3,
      "vote_count": 232
    }
  ],
  "name": "My List",
  "page": 1,
  "poster_path": null,
  "total_pages": 1,
  "total_results": 1
}

Authorizations

Authorization
string
header
required

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

Path Parameters

list_id
string
required

This represents the list ID. Get it here

Query Parameters

language
string

This represents the language.

Example:

"en"

page
string

This represents the page number.

Example:

"1"

Response

200 - application/json

Details

The response is of type object.