Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
Lists
Details
This endpoint retrieves the details of a list.
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
This represents the language.
Example:
"en"
This represents the page number.
Example:
"1"
Response
200 - application/json
Details
The response is of type object
.
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
}
Assistant
Responses are generated using AI and may contain mistakes.