curl --request GET \
--url https://api.themoviedb.org/3/company/%7B{company_id}%7D \
--header 'Authorization: Bearer <token>'
{
"description": "",
"headquarters": "Los Angeles, California",
"homepage": "http://convergence-ent.com/",
"id": 7417,
"logo_path": "/13GyIWMzFvDqJN6I6tZCQYzWr7L.png",
"name": "Convergence Entertainment",
"origin_country": "US",
"parent_company": null
}
This endpoint allows you to get the company details by ID.
curl --request GET \
--url https://api.themoviedb.org/3/company/%7B{company_id}%7D \
--header 'Authorization: Bearer <token>'
{
"description": "",
"headquarters": "Los Angeles, California",
"homepage": "http://convergence-ent.com/",
"id": 7417,
"logo_path": "/13GyIWMzFvDqJN6I6tZCQYzWr7L.png",
"name": "Convergence Entertainment",
"origin_country": "US",
"parent_company": null
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Fetch company details
The response is of type object
.