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
Account
Rated TV
This represents the list of TV shows you have rated.
GET
/
3
/
account
/
{account_id}
/
rated
/
tv
curl --request GET \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/rated/tv \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/bFVx0ydejF6NE8SEAVz95ns0o6A.jpg",
"first_air_date": "2011-01-09",
"genre_ids": [
18,
35
],
"id": 34307,
"name": "Shameless",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Shameless",
"overview": "Chicagoan Frank Gallagher is the proud single dad of six smart, industrious, independent kids, who without him would be... perhaps better off. When Frank's not at the bar spending what little money they have, he's passed out on the floor. But the kids have found ways to grow up in spite of him. They may not be like any family you know, but they make no apologies for being exactly who they are.",
"popularity": 1078.525,
"poster_path": "/9akij7PqZ1g6zl42DQQTtL9CTSb.jpg",
"rating": 3,
"vote_average": 8.158,
"vote_count": 2742
},
{
"adult": false,
"backdrop_path": "/zZqpAXxVSBtxV9qPBcscfXBcL2w.jpg",
"first_air_date": "2011-04-17",
"genre_ids": [
10765,
18,
10759
],
"id": 1399,
"name": "Game of Thrones",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Game of Thrones",
"overview": "Seven noble families fight for control of the mythical land of Westeros. Friction between the houses leads to full-scale war. All while a very ancient evil awakens in the farthest north. Amidst the war, a neglected military order of misfits, the Night's Watch, is all that stands between the realms of men and icy horrors beyond.",
"popularity": 1348.329,
"poster_path": "/1XS1oqL89opfnbLl8WnZY1O1uJx.jpg",
"rating": 5,
"vote_average": 8.456,
"vote_count": 24197
}
],
"total_pages": 1,
"total_results": 2
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
This represents the TV show language.
Example:
"en"
This represents the page number.
Example:
"1"
This specifies the order in which the retrieved list will be displayed.
Example:
"created_at.asc"
Response
200 - application/json
Rated TV
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/account/%7B{account_id}%7D/rated/tv \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/bFVx0ydejF6NE8SEAVz95ns0o6A.jpg",
"first_air_date": "2011-01-09",
"genre_ids": [
18,
35
],
"id": 34307,
"name": "Shameless",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Shameless",
"overview": "Chicagoan Frank Gallagher is the proud single dad of six smart, industrious, independent kids, who without him would be... perhaps better off. When Frank's not at the bar spending what little money they have, he's passed out on the floor. But the kids have found ways to grow up in spite of him. They may not be like any family you know, but they make no apologies for being exactly who they are.",
"popularity": 1078.525,
"poster_path": "/9akij7PqZ1g6zl42DQQTtL9CTSb.jpg",
"rating": 3,
"vote_average": 8.158,
"vote_count": 2742
},
{
"adult": false,
"backdrop_path": "/zZqpAXxVSBtxV9qPBcscfXBcL2w.jpg",
"first_air_date": "2011-04-17",
"genre_ids": [
10765,
18,
10759
],
"id": 1399,
"name": "Game of Thrones",
"origin_country": [
"US"
],
"original_language": "en",
"original_name": "Game of Thrones",
"overview": "Seven noble families fight for control of the mythical land of Westeros. Friction between the houses leads to full-scale war. All while a very ancient evil awakens in the farthest north. Amidst the war, a neglected military order of misfits, the Night's Watch, is all that stands between the realms of men and icy horrors beyond.",
"popularity": 1348.329,
"poster_path": "/1XS1oqL89opfnbLl8WnZY1O1uJx.jpg",
"rating": 5,
"vote_average": 8.456,
"vote_count": 24197
}
],
"total_pages": 1,
"total_results": 2
}
Assistant
Responses are generated using AI and may contain mistakes.