GET
/
3
/
tv
/
{series_id}
/
season
/
{season_number}
/
episode
/
{episode_number}
/
videos
curl --request GET \
  --url https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}/videos \
  --header 'Authorization: Bearer <token>'
{
  "id": 1922715,
  "results": [
    {
      "id": "636aa5780d1e7f007ac3a45c",
      "iso_3166_1": "US",
      "iso_639_1": "en",
      "key": "oR_Jj9o9-Cw",
      "name": "Making of Squid Game - Episode 1: Red Light, Green Light [ENG SUB]",
      "official": true,
      "published_at": "2022-06-03T09:00:24.000Z",
      "site": "YouTube",
      "size": 1080,
      "type": "Behind the Scenes"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

series_id
integer
required

a uniques identifier for a tv serie

season_number
integer
required
Example:

1

episode_number
integer
required
Example:

1

Query Parameters

include_video_language
string

filter the list results by language, supports more than one value by using a comma

language
string
default:en-US

Response

200 - application/json

Videos

The response is of type object.