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": 5172732,
"imdb_id": null,
"known_for_department": "Acting",
"name": "Holly Salmon",
"place_of_birth": null,
"popularity": 0,
"profile_path": null
}
This endpoint gets the newest created person. This is a live response and will continuously change.
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": 5172732,
"imdb_id": null,
"known_for_department": "Acting",
"name": "Holly Salmon",
"place_of_birth": null,
"popularity": 0,
"profile_path": null
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Latest Example
The response is of type object
.