> ## Documentation Index
> Fetch the complete documentation index at: https://ileolami.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Videos

> This endpoint get the videos of a TV episode.



## OpenAPI

````yaml get /3/tv/{series_id}/season/{season_number}/episode/{episode_number}/videos
openapi: 3.0.3
info:
  title: The Movie Database
  description: Reference
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: ACCOUNT
  - name: AUTHENTICATION
  - name: CERTIFICATION
  - name: CHANGES
  - name: COLLECTION
  - name: COMPANIES
  - name: CONFIGURATION
  - name: CREDITS
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSION
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORK
  - name: PEOPLE
  - name: PEOPLE LISTS
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODES GROUPS
  - name: WATCH PROVIDERS
paths:
  /3/tv/{series_id}/season/{season_number}/episode/{episode_number}/videos:
    parameters:
      - $ref: '#/components/parameters/SeriesID'
      - name: season_number
        in: path
        required: true
        schema:
          type: integer
          example: 1
      - name: episode_number
        in: path
        required: true
        schema:
          type: integer
          example: 1
    get:
      tags:
        - TV EPISODES
      summary: Videos
      description: This endpoint get the videos of a TV episode.
      operationId: videos3
      parameters:
        - name: include_video_language
          description: >-
            filter the list results by language, supports more than one value by
            using a comma
          in: query
          schema:
            type: string
        - name: language
          in: query
          schema:
            type: string
            default: en-US
      responses:
        '200':
          description: Videos
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=14767
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Wed, 22 Jan 2025 11:11:04 GMT
            ETag:
              schema:
                type: string
                example: W/"9d914cee5f6b3bf187da55011c7bd930"
            Server:
              schema:
                type: string
                example: openresty
            Transfer-Encoding:
              schema:
                type: string
                example: chunked
            Vary:
              schema:
                type: string
                example: Origin
            Via:
              schema:
                type: string
                example: >-
                  1.1 f6eede9416393de137afc2f11d733fec.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: LhhjuAOmEadx-9Ls-Z3a43TikKE4mqr24wuNI3U8YFsD6qrZEMKNfA==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: LOS50-P2
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '12731'
            x-memc-expires:
              schema:
                type: string
                example: '14767'
            x-memc-key:
              schema:
                type: string
                example: b4b36c6c11648f5e151f5f7712744520
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 1922715
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: 636aa5780d1e7f007ac3a45c
                        iso_3166_1:
                          type: string
                          example: US
                        iso_639_1:
                          type: string
                          example: en
                        key:
                          type: string
                          example: oR_Jj9o9-Cw
                        name:
                          type: string
                          example: >-
                            Making of Squid Game - Episode 1: Red Light, Green
                            Light [ENG SUB]
                        official:
                          type: boolean
                          example: true
                        published_at:
                          type: string
                          example: '2022-06-03T09:00:24.000Z'
                        site:
                          type: string
                          example: YouTube
                        size:
                          type: number
                          example: 1080
                        type:
                          type: string
                          example: Behind the Scenes
                    example:
                      - 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
              examples:
                Videos:
                  value:
                    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
components:
  parameters:
    SeriesID:
      name: series_id
      description: a uniques identifier for a tv serie
      in: path
      required: true
      schema:
        type: integer
      examples:
        example1:
          value: 122
        example2:
          value: 123
        example3:
          value: 110381
        example4:
          value: 1433
        example5:
          value: 93405
        example6:
          value: 1399
        example7:
          value: 84007
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````