GET
/
3
/
person
/
latest
curl --request GET \
  --url https://api.themoviedb.org/3/person/latest \
  --header 'Authorization: Bearer <token>'
{
  "adult": false,
  "also_known_as": [],
  "biography": "",
  "birthday": null,
  "deathday": null,
  "gender": 0,
  "homepage": null,
  "id": 5150833,
  "imdb_id": null,
  "known_for_department": "Acting",
  "name": "Alvie N. Leeper",
  "place_of_birth": null,
  "popularity": 0,
  "profile_path": null
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Latest

The response is of type object.