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

# Changes

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



## OpenAPI

````yaml get /3/tv/{series_id}/changes
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}/changes:
    parameters:
      - $ref: '#/components/parameters/SeriesID'
    get:
      tags:
        - TV SERIES
      summary: Changes
      description: This endpoint get the recent changes for a TV show.
      operationId: changes2
      parameters:
        - name: end_date
          in: query
          schema:
            type: string
        - name: start_date
          in: query
          schema:
            type: string
        - name: page
          in: query
          schema:
            type: integer
            default: 1
      responses:
        '200':
          description: Changes
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=586
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Wed, 01 Jan 2025 19:20:07 GMT
            ETag:
              schema:
                type: string
                example: W/"d6c6f550ab63b6127bd7b6a96c7803e9"
            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 c9d6fa331b6e31ab90cd2309d0f765d0.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: imX9xX3o3VNhmOoMHJSD8rD_4YZvwtDcRGlFEB64Y-NwD7we8rQVFw==
            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: '14'
            x-memc-expires:
              schema:
                type: string
                example: '586'
            x-memc-key:
              schema:
                type: string
                example: 6899b0deb0004da0b6be8001c39bb338
          content:
            application/json:
              schema:
                type: object
                properties:
                  changes:
                    type: array
                    items:
                      type: object
                      properties:
                        items:
                          type: array
                          items:
                            type: object
                            properties:
                              action:
                                type: string
                                example: updated
                              id:
                                type: string
                                example: 6773d55797aa8e4e2c127de8
                              iso_3166_1:
                                type: string
                                example: ''
                              iso_639_1:
                                type: string
                                example: ''
                              time:
                                type: string
                                example: 2024-12-31 11:28:23 UTC
                              value:
                                type: object
                                properties:
                                  season_id:
                                    type: number
                                    example: 423560
                                  season_number:
                                    type: number
                                    example: 21
                          example:
                            - action: updated
                              id: 6773d55797aa8e4e2c127de8
                              iso_3166_1: ''
                              iso_639_1: ''
                              time: 2024-12-31 11:28:23 UTC
                              value:
                                season_id: 423560
                                season_number: 21
                        key:
                          type: string
                          example: season
                    example:
                      - items:
                          - action: updated
                            id: 6773d55797aa8e4e2c127de8
                            iso_3166_1: ''
                            iso_639_1: ''
                            time: 2024-12-31 11:28:23 UTC
                            value:
                              season_id: 423560
                              season_number: 21
                        key: season
              examples:
                Changes:
                  value:
                    changes:
                      - items:
                          - action: updated
                            id: 6773d55797aa8e4e2c127de8
                            iso_3166_1: ''
                            iso_639_1: ''
                            time: 2024-12-31 11:28:23 UTC
                            value:
                              season_id: 423560
                              season_number: 21
                        key: season
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

````