curl --request GET \
--url https://api.themoviedb.org/3/company/%7B{company_id}%7D/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/%7B{company_id}%7D/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.
Fetch alternative names
The response is of type object
.