GET
/
3
/
list
/
{list_id}
curl --request GET \
  --url https://api.themoviedb.org/3/list/{list_id} \
  --header 'Authorization: Bearer <token>'
{
  "created_by": "Ileolami",
  "description": "This is a story to test this API endpoint",
  "favorite_count": 0,
  "id": 8504086,
  "iso_639_1": "en",
  "item_count": 0,
  "items": [],
  "name": "True Story Of Nnekka",
  "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.

Path Parameters

list_id
integer
required
Example:

8504075

Query Parameters

language
string
default:en-US
page
integer
default:1

Response

200 - application/json

Details

The response is of type object.