curl --request GET \
--url https://api.themoviedb.org/3/person/latest
{
"adult": false,
"also_known_as": [],
"biography": "",
"birthday": null,
"deathday": null,
"gender": 0,
"homepage": null,
"id": 5169911,
"imdb_id": null,
"known_for_department": "Camera",
"name": "Calvina Li",
"place_of_birth": null,
"popularity": 0,
"profile_path": null
}
Get the newest created person. This is a live response and will continuously change.
curl --request GET \
--url https://api.themoviedb.org/3/person/latest
{
"adult": false,
"also_known_as": [],
"biography": "",
"birthday": null,
"deathday": null,
"gender": 0,
"homepage": null,
"id": 5169911,
"imdb_id": null,
"known_for_department": "Camera",
"name": "Calvina Li",
"place_of_birth": null,
"popularity": 0,
"profile_path": null
}
Latest
The response is of type object
.