GET
/
3
/
list
/
{list_id}
Details
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

created_by
string
Example:

"Ileolami"

description
string
Example:

"This is a story to test this API endpoint"

favorite_count
number
Example:

0

id
number
Example:

8504086

iso_639_1
string
Example:

"en"

item_count
number
Example:

0

items
any[]
Example:
[]
name
string
Example:

"True Story Of Nnekka"

page
number
Example:

1

poster_path
any
total_pages
number
Example:

1

total_results
number
Example:

0