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



## OpenAPI

````yaml api-reference/openapi3.json get /3/tv/episode/{episode_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/episode/{episode_id}/changes:
    get:
      tags:
        - TV EPISODES
      summary: Changes
      description: This endpoint get the recent changes for a TV episode.
      operationId: changes4
      parameters:
        - $ref: '#/components/parameters/episode_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:30:08 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 a075746ea1824aa1c02a5e26a9e968e4.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: AjUGBV4hKUtOVaaB-A23CVBIqWE6LRL3Z-wWDboC2NqtX37Y-9SY6w==
            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: ab62c3fec064c91b1a2d709db16fd83c
          content:
            application/json:
              schema:
                type: object
                properties:
                  changes:
                    type: array
                    items: {}
                    example: []
              examples:
                changes:
                  value:
                    changes: []
components:
  parameters:
    episode_number:
      name: episode_number
      in: path
      required: true
      description: >-
        This refers to the unique number assigned to a specific episode within a
        season of a television series.
      schema:
        type: integer
        example: ''
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````