GET
/
3
/
tv
/
{series_id}
/
videos
curl --request GET \
  --url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/videos \
  --header 'Authorization: Bearer <token>'
{
  "id": 93405,
  "results": [
    {
      "id": "61310236f0647c00426c1680",
      "iso_3166_1": "US",
      "iso_639_1": "en",
      "key": "oqxAJKy0ii4",
      "name": "Official Trailer [Subtitled]",
      "official": true,
      "published_at": "2021-09-02T00:00:02.000Z",
      "site": "YouTube",
      "size": 1080,
      "type": "Trailer"
    },
    {
      "id": "6113e3355c5634007d4dbfec",
      "iso_3166_1": "US",
      "iso_639_1": "en",
      "key": "5oFn2eodVD0",
      "name": "Official Teaser #1 [ENG SUB]",
      "official": true,
      "published_at": "2021-08-11T06:36:46.000Z",
      "site": "YouTube",
      "size": 1080,
      "type": "Teaser"
    }
  ]
}

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

This represents the series ID. Get it here

Query Parameters

include_video_language
string

This represents the language of the video you want to retrieve. It supports more than one value by using a comma.

Example:

"french, korea"

Response

200 - application/json

Videos

The response is of type object.