Lists
This endpoint get the lists that a movie has been added to.
GET
/
3
/
movie
/
{movie_id}
/
lists
curl --request GET \
--url https://api.themoviedb.org/3/movie/{movie_id}/lists \
--header 'Authorization: Bearer <token>'
{
"id": 12,
"page": 1,
"results": [
{
"description": "",
"favorite_count": 0,
"id": 8504064,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 84,
"list_type": "movie",
"name": "Top 84 Movies 2000-Current from IMDb Top 250",
"poster_path": null
},
{
"description": "All the Great Movies I've Watched So Far",
"favorite_count": 0,
"id": 7092449,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 836,
"list_type": "movie",
"name": "Watched Movies",
"poster_path": null
},
{
"description": "All of my ratings are the movies that I have seen.",
"favorite_count": 0,
"id": 8302254,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 2366,
"list_type": "movie",
"name": "Movies That I have watched all",
"poster_path": null
},
{
"description": "Select a title for trailers and more.\r\n\r\nCain Cinema features a 4K UHD picture on a 120\" (16:9) screen, and a 7.2.4 Dolby Atmos audio experience. ",
"favorite_count": 0,
"id": 7081593,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 1653,
"list_type": "movie",
"name": "Now Showing at Cain Cinema",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8238235,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 11300,
"list_type": "movie",
"name": "My Movie Library",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8168597,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 15682,
"list_type": "movie",
"name": "movies",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8241893,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 467,
"list_type": "movie",
"name": "Owned",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 108088,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 341,
"list_type": "movie",
"name": "Family Movies",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8305831,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 60,
"list_type": "movie",
"name": "top_Animation",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8289773,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 1037,
"list_type": "movie",
"name": "Founders WW",
"poster_path": null
},
{
"description": "This is the movies we have seen and made a drinking game for!\r\nCheck us out on Partypingo.com\r\n\r\nThis is still updating ",
"favorite_count": 0,
"id": 7049285,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 797,
"list_type": "movie",
"name": "Partypingo Drinking Game list",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 97238,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 723,
"list_type": "movie",
"name": "Watched",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8285820,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 53,
"list_type": "movie",
"name": "2024 + alex",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 7110190,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 545,
"list_type": "movie",
"name": "Family Movies",
"poster_path": null
},
{
"description": "Master List In Progress",
"favorite_count": 0,
"id": 51108,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 11762,
"list_type": "movie",
"name": "My Movies",
"poster_path": null
},
{
"description": "Films and TV I have in collection",
"favorite_count": 0,
"id": 8261951,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 758,
"list_type": "movie",
"name": "Collection",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 103747,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 1304,
"list_type": "movie",
"name": "Grandma",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8275185,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 34,
"list_type": "movie",
"name": "Favorite Movies",
"poster_path": null
},
{
"description": "Movie Watched List",
"favorite_count": 0,
"id": 7113415,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 1130,
"list_type": "movie",
"name": "Movies Watched",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 7092101,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 13393,
"list_type": "movie",
"name": "for radarr",
"poster_path": null
}
],
"total_pages": 65,
"total_results": 1284
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Example:
"12"
Response
200 - application/json
Lists
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/movie/{movie_id}/lists \
--header 'Authorization: Bearer <token>'
{
"id": 12,
"page": 1,
"results": [
{
"description": "",
"favorite_count": 0,
"id": 8504064,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 84,
"list_type": "movie",
"name": "Top 84 Movies 2000-Current from IMDb Top 250",
"poster_path": null
},
{
"description": "All the Great Movies I've Watched So Far",
"favorite_count": 0,
"id": 7092449,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 836,
"list_type": "movie",
"name": "Watched Movies",
"poster_path": null
},
{
"description": "All of my ratings are the movies that I have seen.",
"favorite_count": 0,
"id": 8302254,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 2366,
"list_type": "movie",
"name": "Movies That I have watched all",
"poster_path": null
},
{
"description": "Select a title for trailers and more.\r\n\r\nCain Cinema features a 4K UHD picture on a 120\" (16:9) screen, and a 7.2.4 Dolby Atmos audio experience. ",
"favorite_count": 0,
"id": 7081593,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 1653,
"list_type": "movie",
"name": "Now Showing at Cain Cinema",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8238235,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 11300,
"list_type": "movie",
"name": "My Movie Library",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8168597,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 15682,
"list_type": "movie",
"name": "movies",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8241893,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 467,
"list_type": "movie",
"name": "Owned",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 108088,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 341,
"list_type": "movie",
"name": "Family Movies",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8305831,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 60,
"list_type": "movie",
"name": "top_Animation",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8289773,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 1037,
"list_type": "movie",
"name": "Founders WW",
"poster_path": null
},
{
"description": "This is the movies we have seen and made a drinking game for!\r\nCheck us out on Partypingo.com\r\n\r\nThis is still updating ",
"favorite_count": 0,
"id": 7049285,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 797,
"list_type": "movie",
"name": "Partypingo Drinking Game list",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 97238,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 723,
"list_type": "movie",
"name": "Watched",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8285820,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 53,
"list_type": "movie",
"name": "2024 + alex",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 7110190,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 545,
"list_type": "movie",
"name": "Family Movies",
"poster_path": null
},
{
"description": "Master List In Progress",
"favorite_count": 0,
"id": 51108,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 11762,
"list_type": "movie",
"name": "My Movies",
"poster_path": null
},
{
"description": "Films and TV I have in collection",
"favorite_count": 0,
"id": 8261951,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 758,
"list_type": "movie",
"name": "Collection",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 103747,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 1304,
"list_type": "movie",
"name": "Grandma",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8275185,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 34,
"list_type": "movie",
"name": "Favorite Movies",
"poster_path": null
},
{
"description": "Movie Watched List",
"favorite_count": 0,
"id": 7113415,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 1130,
"list_type": "movie",
"name": "Movies Watched",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 7092101,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 13393,
"list_type": "movie",
"name": "for radarr",
"poster_path": null
}
],
"total_pages": 65,
"total_results": 1284
}