GET
/
3
/
list
/
{list_id}
curl --request GET \
  --url https://api.themoviedb.org/3/list/{list_id} \
  --header 'Authorization: Bearer <token>'
{
  "created_by": "SirJosh",
  "description": "This contains the list of all anime, movie or TV shows",
  "favorite_count": 0,
  "id": 8504997,
  "iso_639_1": "en",
  "item_count": 1,
  "items": [
    {
      "adult": false,
      "backdrop_path": "/wgvc3PmjQGtYYDWaeuV867mnFDs.jpg",
      "genre_ids": [
        878,
        28,
        12
      ],
      "id": 18,
      "media_type": "movie",
      "original_language": "fr",
      "original_title": "Le Cinquième Élément",
      "overview": "In 2257, a taxi driver is unintentionally given the task of saving a young girl who is part of the key that will ensure the survival of humanity.",
      "popularity": 69.185,
      "poster_path": "/fPtlCO1yQtnoLHOwKtWz7db6RGU.jpg",
      "release_date": "1997-05-02",
      "title": "The Fifth Element",
      "video": false,
      "vote_average": 7.554,
      "vote_count": 10764
    }
  ],
  "name": "Anime",
  "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.

Query Parameters

language
string

Specifies the language in which the response should be returned.

Example:

"en-US"

list_id
number
required

This is the unique identifier of the list been created

Example:

""

page
integer

Indicates which page of results to return. Default is the first page (1).

Example:

1

Response

200 - application/json

details

The response is of type object.