curl --request GET \
--url https://api.themoviedb.org/3/person/{person_id}/translations \
--header 'Authorization: Bearer <token>'{
"id": 550,
"translations": [
{
"iso_3166_1": "US",
"iso_639_1": "en",
"name": "English",
"english_name": "English",
"data": {
"biography": "",
"name": "Jennifer Todd",
"primary": true
}
}
]
}This endpoint is used to get the translations that belong to a person.
curl --request GET \
--url https://api.themoviedb.org/3/person/{person_id}/translations \
--header 'Authorization: Bearer <token>'{
"id": 550,
"translations": [
{
"iso_3166_1": "US",
"iso_639_1": "en",
"name": "English",
"english_name": "English",
"data": {
"biography": "",
"name": "Jennifer Todd",
"primary": true
}
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the person