Endpoints
- Account
- Authentication
- Certification
- Changes
- Collections
- Companies
- Configuration
- Credits
- Discover
- Find
- Genres
- Guest Session
- Keywords
- List
- Movie Lists
- Movies
- Networks
- People Lists
- People
- Reviews
- Search
- Trending
- TV Series Lists
- TV Series
- TV Seasons
- TV Episodes
- TV Episode Groups
- Watch Providers
- API Reference
Account
Watchlist Movies
Get a list of movies added to a users watchlist.
GET
/
3
/
account
/
{account_id}
/
watchlist
/
movies
curl --request GET \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/watchlist/movies
{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/6qld2YxAO9gdEblo0rsEb8BcYKO.jpg",
"genre_ids": [
10749,
18
],
"id": 1156593,
"original_language": "es",
"original_title": "Culpa tuya",
"overview": "The love between Noah and Nick seems unwavering despite their parents' attempts to separate them. But his job and her entry into college open up their lives to new relationships that will shake the foundations of both their relationship and the Leister family itself.",
"popularity": 5944.118,
"poster_path": "/1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg",
"release_date": "2024-12-26",
"title": "Your Fault",
"video": false,
"vote_average": 7.299,
"vote_count": 467
}
],
"total_pages": 1,
"total_results": 1
}
Path Parameters
Query Parameters
Example:
"en-US"
Example:
"1"
Example:
"created_at.asc"
Response
200 - application/json
list movies
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/watchlist/movies
{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/6qld2YxAO9gdEblo0rsEb8BcYKO.jpg",
"genre_ids": [
10749,
18
],
"id": 1156593,
"original_language": "es",
"original_title": "Culpa tuya",
"overview": "The love between Noah and Nick seems unwavering despite their parents' attempts to separate them. But his job and her entry into college open up their lives to new relationships that will shake the foundations of both their relationship and the Leister family itself.",
"popularity": 5944.118,
"poster_path": "/1sQA7lfcF9yUyoLYC0e6Zo3jmxE.jpg",
"release_date": "2024-12-26",
"title": "Your Fault",
"video": false,
"vote_average": 7.299,
"vote_count": 467
}
],
"total_pages": 1,
"total_results": 1
}