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": 5144310,
"imdb_id": null,
"known_for_department": "Acting",
"name": "Роксоляна Сирота",
"place_of_birth": null,
"popularity": 0,
"profile_path": null
}
This endpoint allows you to get the newest created person.
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": 5144310,
"imdb_id": null,
"known_for_department": "Acting",
"name": "Роксоляна Сирота",
"place_of_birth": null,
"popularity": 0,
"profile_path": null
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Fetch latest
The response is of type object
.