GET
/
3
/
person
/
{person_id}
/
changes
curl --request GET \
  --url https://api.themoviedb.org/3/person/{person_id}/changes \
  --header 'Authorization: Bearer <token>'
{
  "changes": [
    {
      "items": [
        {
          "action": "added",
          "id": "640469b113654500ba4e859a",
          "iso_3166_1": "ES",
          "iso_639_1": "ca",
          "time": "2023-03-05 10:06:41 UTC",
          "value": "Thomas \"Tom\" Jeffrey Hanks (Concord, Califòrnia, 9 de juliol de 1956) és un actor de cinema i productor estatunidenc, guanyador dues vegades de l'Oscar al millor actor i considerat un dels més versàtils i talentosos del cinema actual.\n\nHanks és l'actor que més diners ha guanyat de tota la història del cinema amb un total de gairebé sis mil milions de dòlars (setembre 2006). És també copropietari de Playtone, una companyia de producció de pel·lícules."
        }
      ],
      "key": "biography"
    },
    {
      "items": [
        {
          "action": "added",
          "id": "640469a7e61e6d00963c33bb",
          "iso_3166_1": "",
          "iso_639_1": "",
          "time": "2023-03-05 10:06:31 UTC",
          "value": "ca-ES"
        }
      ],
      "key": "translations"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

person_id
string
required

This refers to a unique identifier assigned to an individual within a database.

Example:

""

Query Parameters

end_date
string

This indicates the end of the date range for the data you want to retrieve

page
integer

Indicates which page of results to return. Default is the first page (1).

Example:

1

start_date
string

It specifies what date you want the results to start from

Response

200 - application/json

changes

The response is of type object.