cURL
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": 5160396, "imdb_id": null, "known_for_department": "Visual Effects", "name": "Manfred Gärtner", "place_of_birth": null, "popularity": 0, "profile_path": null }
This endpoint get the newest created person. This is a live response and will continuously change.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
latest
The response is of type object.
object