GET
/
3
/
list
/
{list_id}
curl --request GET \
  --url https://api.themoviedb.org/3/list/{list_id} \
  --header 'Authorization: Bearer <token>'
{
  "created_by": "Emiloju",
  "description": "A list of movies for the holiday season",
  "favorite_count": 0,
  "id": 8504581,
  "iso_639_1": "en",
  "item_count": 0,
  "items": [],
  "name": "Christmas movie list.",
  "page": 1,
  "poster_path": null,
  "total_pages": 1,
  "total_results": 0
}

Authorizations

Authorization
string
header
required

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

Query Parameters

language
string

The language and region of the content, represented by an ISO 639-1 and ISO 3166-1 code combination (e.g, en-US for English, United States.). Defaults to en-US.

Example:

"en-US"

page
integer

A specific page number to get results for. Defaults to 1

Example:

1

Response

200 - application/json

Request successful

The response is of type object.