Skip to main content
GET
/
tv
/
{series_id}
/
lists
List TV series
curl --request GET \
  --url 'https://api.themoviedb.org/3/tv/{{series_id}}/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
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

series_id
string
required

Query Parameters

language
string

Defaults to en-US

Example:

"string"

page
string

Defaults to 1

Example:

"int32"

Response

200 - application/json

List TV series

id
number
Example:

204370

page
number
Example:

1

results
object[]
Example:
[
  {
    "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
number
Example:

1

total_results
number
Example:

4