ACCOUNT
- Endpoints
AUTHENTICATION
- Endpoints
CERTIFICATIONS
- Endpoints
CHANGES
- Endpoints
COLLECTIONS
- Endpoints
COMPANIES
- Endpoints
CONFIGURATION
- Endpoints
CREDITS
FIND
GENRES
GUEST-SESSIONS
KEYWORDS
MOVIES
PEOPLE
PEOPLE-LISTS
REVIEWS
TV-EPISODE-GROUPS
TV-EPISODES
TV-SEASONS
TV-SERIES
TV-SERIES-LISTS
WATCH-PROVIDERS
PEOPLE
Latest
This endpoint gets the newest created person. This is a live response and will continuously change.
GET
/
3
/
person
/
latest
Copy
curl --request GET \
--url https://api.themoviedb.org/3/person/latest \
--header 'Authorization: Bearer <token>'
Copy
{
"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
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Latest Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/person/latest \
--header 'Authorization: Bearer <token>'
Copy
{
"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
}
Assistant
Responses are generated using AI and may contain mistakes.