GET
/
3
/
tv
/
{series_id}
/
season
/
{season_number}
/
videos
curl --request GET \
  --url https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/videos \
  --header 'Authorization: Bearer <token>'
{
  "id": 3572,
  "results": [
    {
      "id": "62c70c172cde98004f159005",
      "iso_3166_1": "US",
      "iso_639_1": "en",
      "key": "HhesaQXLuRY",
      "name": "Season 1 Trailer",
      "official": false,
      "published_at": "2013-04-23T07:34:30.000Z",
      "site": "YouTube",
      "size": 1080,
      "type": "Trailer"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

season_number
integer
required

This refers to the numerical identifier assigned to a specific season of a TV series.

Example:

""

series_id
integer
required

This refers to a unique identifier assigned to a television series within the database.

Example:

""

Query Parameters

include_video_language
string

Filters returned videos based on specified languages. Filter the list results by language, supports more than one value by using a comma.

language
string

Specifies the language in which the response should be returned.

Example:

"en-US"

Response

200 - application/json

videos

The response is of type object.