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

# Changes

> This endpoint retrieves the recent changes that have been made to a TV season.

<Note>
    Important Note

    You can query this endpoint within the range of 14 days by using `start_date` and `end_date`. If not specified, it retrieves changes that were made in the last 24 hours.



</Note>

    



## OpenAPI

````yaml api-reference/openapi.yaml get /3/tv/season/{{season_id}}/changes
openapi: 3.0.3
info:
  title: The Movie Database API
  description: >-
    Welcome to the third version of The Movie Database (TMDB) API. Our API
    provides you with vast access to a range of movies, TV shows, actor
    information, and images.


    With the TMDB API, you can easily integrate any of these functionalities in
    your application.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
  - url: Collection
security:
  - bearerAuth: []
tags:
  - name: Validate Key
  - name: Authentication
  - name: Guest Sessions
  - name: Configuration
  - name: Account
  - name: Search
  - name: Discover
  - name: Find
  - name: Keyword
  - name: Lists
  - name: V3 vs V4
    description: >-
      There is version 4 (v4) for our list API. It contains several advanced
      improvements that differentiate it from the version 3 (v3) list. Although
      v3 lists will continue to work, you can only access these features if you
      switch to v4 lists.


      Some of the new improvements you can access on v4 lists include:


      - You can Import "unlimited" items in a single request
          
      - You can use mixed-type (movie and TV) lists
          
      - You can use private lists
          
      - You can add and use comments per item
          
      - There are more sort options
          
      - They are faster
          

      Check the v4 [documentation
      ](https://developer.themoviedb.org/v4/docs/getting-started) for more
      information.  
  - name: Collections
  - name: Companies
  - name: Networks
  - name: Trending
  - name: Movies
  - name: Movie Lists
  - name: TV Series
  - name: TV Series Lists
  - name: TV Seasons
  - name: TV Providers
  - name: TV Episode Groups
  - name: Watch Providers
  - name: People
  - name: People List
  - name: Genre
  - name: Changes
  - name: Credits
  - name: Certifications
paths:
  /3/tv/season/{{season_id}}/changes:
    parameters:
      - name: season_id
        in: path
        description: >-
          This represents the season ID. Get it
          [here](https://starlight.mintlify.app/api-reference/seriesid)
        required: true
        schema:
          type: string
    get:
      tags:
        - TV Seasons
      summary: Changes
      description: >-
        This endpoint retrieves the recent changes that have been made to a TV
        season.


        <Note>
            Important Note

            You can query this endpoint within the range of 14 days by using `start_date` and `end_date`. If not specified, it retrieves changes that were made in the last 24 hours.



        </Note>

            
      operationId: changes3
      parameters:
        - name: end_date
          in: query
          schema:
            type: string
            example: 29-12-2024
          description: This represents the end date.
        - name: page
          in: query
          schema:
            type: string
            example: '1'
          description: This represents the page number.
        - name: start_date
          in: query
          schema:
            type: string
            example: 25-12-2024
          description: This represents the end date.
      responses:
        '200':
          description: Changes
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=593
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Length:
              schema:
                type: string
                example: '14'
            Date:
              schema:
                type: string
                example: Sun, 29 Dec 2024 22:11:21 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 e89d95d090c0c86ecc7b8930e434625c.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: eEa6y9hqauhEgL3bLIch6Tsw33P4IcPn8AkdYR4NcBPRnv7uQO1Kvw==
            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: '7'
            x-memc-expires:
              schema:
                type: string
                example: '593'
            x-memc-key:
              schema:
                type: string
                example: 3fd28750c08d7ccb0358a3392745be9f
          content:
            application/json:
              schema:
                type: object
                properties:
                  changes:
                    type: array
                    items: {}
                    example: []
              examples:
                Changes:
                  value:
                    changes: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````