curl --request GET \
--url 'https://api.themoviedb.org/3/company/{{company_id}}/alternative_names' \
--header 'Authorization: Bearer <token>'{
"id": 20312,
"results": [
{
"name": "TPC",
"type": ""
},
{
"name": "Three Point Capital",
"type": ""
}
]
}This endpoint allows you to fetch alternative names for a company.
curl --request GET \
--url 'https://api.themoviedb.org/3/company/{{company_id}}/alternative_names' \
--header 'Authorization: Bearer <token>'{
"id": 20312,
"results": [
{
"name": "TPC",
"type": ""
},
{
"name": "Three Point Capital",
"type": ""
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.