> ## 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.

# Changes

> This endpoint get the recent changes for a TV season.



## OpenAPI

````yaml api-reference/openapi3.json get /3/tv/season/{season_id}/changes
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/season/{season_id}/changes:
    get:
      tags:
        - TV SEASONS
      summary: Changes
      description: This endpoint get the recent changes for a TV season.
      operationId: changes3
      parameters:
        - $ref: '#/components/parameters/start_date'
        - $ref: '#/components/parameters/page'
        - $ref: '#/components/parameters/end_date'
        - $ref: '#/components/parameters/season_number'
      responses:
        '200':
          description: changes
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=600
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Length:
              schema:
                type: string
                example: '14'
            Date:
              schema:
                type: string
                example: Sun, 05 Jan 2025 23:47:53 GMT
            ETag:
              schema:
                type: string
                example: W/"1c7b0be7cfcb529d61df7c7b50baa91e"
            Server:
              schema:
                type: string
                example: openresty
            Vary:
              schema:
                type: string
                example: Origin
            Via:
              schema:
                type: string
                example: >-
                  1.1 ffa4b37ccdc94a8c62bf6b6414725210.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: fr3UWYyLVA2wEKYjRkmDjAhiKoev-wrnG5CT0qPsHoSEX2w1PoQq5g==
            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: MISS, STORE
            x-memc-age:
              schema:
                type: string
                example: '0'
            x-memc-expires:
              schema:
                type: string
                example: '600'
            x-memc-key:
              schema:
                type: string
                example: c04c54c34d3d5a5a038e881a3c82752b
          content:
            application/json:
              schema:
                type: object
                properties:
                  changes:
                    type: array
                    items: {}
                    example: []
              examples:
                changes:
                  value:
                    changes: []
components:
  parameters:
    start_date:
      name: start_date
      in: query
      description: It specifies what date you want the results to start from
      schema:
        type: string
    page:
      name: page
      in: query
      description: >-
        Indicates which page of results to return. Default is the first page
        (1).
      schema:
        type: integer
        example: 1
    end_date:
      name: end_date
      in: query
      description: >-
        This indicates the end of the date range for the data you want to
        retrieve
      schema:
        type: string
    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: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````