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



## OpenAPI

````yaml get /3/person/{person_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/person/{person_id}/changes:
    parameters:
      - name: person_id
        in: path
        required: true
        schema:
          type: integer
          example: 164930
    get:
      tags:
        - PEOPLE
      summary: Changes
      description: This endpoint get the recent changes for a person
      operationId: changes1
      parameters:
        - name: end_date
          in: query
          schema:
            type: string
            format: date
        - name: start_date
          in: query
          schema:
            type: string
            format: date
        - 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=600
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Length:
              schema:
                type: string
                example: '14'
            Date:
              schema:
                type: string
                example: Tue, 31 Dec 2024 10:32:13 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 a9f4bdae1135d507d62df475ab78dc5e.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: gmbTTDupDxThYS2smO5bnp3x-PEjcVfXzDc5QYGnLbKD0-cw9oPe2A==
            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: 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: b25de1f9c44c7a9307ad2e6045b8445e
          content:
            application/json:
              schema:
                type: object
                properties:
                  changes:
                    type: array
                    items: {}
                    example: []
              examples:
                Changes:
                  value:
                    changes: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````