curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/lists \
--header 'Authorization: Bearer <token>'
{
"id": 204370,
"page": 1,
"results": [
{
"description": "Would Love to watch ",
"favorite_count": 0,
"id": 8233831,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 9,
"name": "Movies",
"poster_path": null
},
{
"description": "una nueva experiencia",
"favorite_count": 0,
"id": 8232554,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 21,
"name": "nueva lista",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8230040,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 1,
"name": "my top 100",
"poster_path": null
},
{
"description": "collection films novelas",
"favorite_count": 0,
"id": 8229263,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 3,
"name": "novelas",
"poster_path": null
}
],
"total_pages": 1,
"total_results": 4
}
This endpoint allows you to get the lists that a TV series has been added to.
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/lists \
--header 'Authorization: Bearer <token>'
{
"id": 204370,
"page": 1,
"results": [
{
"description": "Would Love to watch ",
"favorite_count": 0,
"id": 8233831,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 9,
"name": "Movies",
"poster_path": null
},
{
"description": "una nueva experiencia",
"favorite_count": 0,
"id": 8232554,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 21,
"name": "nueva lista",
"poster_path": null
},
{
"description": "",
"favorite_count": 0,
"id": 8230040,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 1,
"name": "my top 100",
"poster_path": null
},
{
"description": "collection films novelas",
"favorite_count": 0,
"id": 8229263,
"iso_3166_1": "US",
"iso_639_1": "en",
"item_count": 3,
"name": "novelas",
"poster_path": null
}
],
"total_pages": 1,
"total_results": 4
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Defaults to en-US
"string"
Defaults to 1
"int32"
List TV series
The response is of type object
.