curl --request GET \
--url https://api.themoviedb.org/3/3/search/company \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"id": 121067,
"logo_path": null,
"name": "Convergence Productions Pty",
"origin_country": ""
},
{
"id": 209306,
"logo_path": null,
"name": "Convergence Entertainment Group",
"origin_country": ""
},
{
"id": 7417,
"logo_path": "/13GyIWMzFvDqJN6I6tZCQYzWr7L.png",
"name": "Convergence Entertainment",
"origin_country": "US"
},
{
"id": 229552,
"logo_path": null,
"name": "Videofilm Convergence Group",
"origin_country": ""
},
{
"id": 235404,
"logo_path": null,
"name": "Impact Media Convergence Inc.",
"origin_country": ""
}
],
"total_pages": 1,
"total_results": 5
}
This endpoint allows you to search for companies by their original and alternative names.
curl --request GET \
--url https://api.themoviedb.org/3/3/search/company \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"id": 121067,
"logo_path": null,
"name": "Convergence Productions Pty",
"origin_country": ""
},
{
"id": 209306,
"logo_path": null,
"name": "Convergence Entertainment Group",
"origin_country": ""
},
{
"id": 7417,
"logo_path": "/13GyIWMzFvDqJN6I6tZCQYzWr7L.png",
"name": "Convergence Entertainment",
"origin_country": "US"
},
{
"id": 229552,
"logo_path": null,
"name": "Videofilm Convergence Group",
"origin_country": ""
},
{
"id": 235404,
"logo_path": null,
"name": "Impact Media Convergence Inc.",
"origin_country": ""
}
],
"total_pages": 1,
"total_results": 5
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Company name you wish to query
"Convergence"
defaults to 1
"int32"
Search company
The response is of type object
.