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

# Videos

> This endpoint get the videos that belong to a TV season.



## OpenAPI

````yaml api-reference/openapi3.json get /3/tv/{series_id}/season/{season_number}/videos
openapi: 3.0.3
info:
  title: The Movie Database
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: AUTHENTICATION
  - name: ACCOUNT
  - name: CERTIFICATIONS
  - name: CHANGES
  - name: COLLECTIONS
  - name: COMPANY
  - name: CONFIGURATION
  - name: CREDIT
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSIONS
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORKS
  - name: PEOPLE LIST
  - name: PEOPLE
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODE GROUP
  - name: WATCH PROVIDERS
paths:
  /3/tv/{series_id}/season/{season_number}/videos:
    get:
      tags:
        - TV SEASONS
      summary: Videos
      description: This endpoint get the videos that belong to a TV season.
      operationId: videos2
      parameters:
        - name: include_video_language
          in: query
          description: >-
            Filters returned videos based on specified languages. Filter the
            list results by language, supports more than one value by using a
            comma.
          schema:
            type: string
        - $ref: '#/components/parameters/language'
        - $ref: '#/components/parameters/season_number'
        - $ref: '#/components/parameters/series_id'
      responses:
        '200':
          description: videos
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=8652
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Mon, 06 Jan 2025 00:01:21 GMT
            ETag:
              schema:
                type: string
                example: W/"34e82848dee7d556c622fb462a008443"
            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 3dcb635971b5d310e8941cdb963aff70.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: CStPC_KYqoeir5nPzfGiAiPJK8-XIbbdbFlp0K4X9_DfqPb8nsZ5-A==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: IAD89-C3
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            x-memc:
              schema:
                type: string
                example: HIT
            x-memc-age:
              schema:
                type: string
                example: '16512'
            x-memc-expires:
              schema:
                type: string
                example: '8652'
            x-memc-key:
              schema:
                type: string
                example: a0ff62c79eec23393f8bd494ad5202a5
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    example: 3572
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: 62c70c172cde98004f159005
                        iso_3166_1:
                          type: string
                          example: US
                        iso_639_1:
                          type: string
                          example: en
                        key:
                          type: string
                          example: HhesaQXLuRY
                        name:
                          type: string
                          example: Season 1 Trailer
                        official:
                          type: boolean
                          example: false
                        published_at:
                          type: string
                          example: '2013-04-23T07:34:30.000Z'
                        site:
                          type: string
                          example: YouTube
                        size:
                          type: number
                          example: 1080
                        type:
                          type: string
                          example: Trailer
                    example:
                      - 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
              examples:
                videos:
                  value:
                    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
components:
  parameters:
    language:
      name: language
      in: query
      description: Specifies the language in which the response should be returned.
      schema:
        type: string
        example: en-US
    season_number:
      name: season_number
      in: path
      required: true
      description: >-
        This refers to the numerical identifier assigned to a specific season of
        a TV series.
      schema:
        type: integer
        example: ''
    series_id:
      name: series_id
      in: path
      required: true
      description: >-
        This refers to a unique identifier assigned to a television series
        within the database.
      schema:
        type: integer
        example: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````