curl --request GET \
--url https://api.themoviedb.org/3/search/company \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"id": 71126,
"logo_path": null,
"name": "Lucasfilm Kids",
"origin_country": ""
},
{
"id": 1,
"logo_path": "/tlVSws0RvvtPBwViUyOFAO0vcQS.png",
"name": "Lucasfilm Ltd.",
"origin_country": "US"
},
{
"id": 108270,
"logo_path": "/eDWGeg5tdVNcI8aBaaJ21bEBtFa.png",
"name": "Lucasfilm Animation",
"origin_country": "US"
},
{
"id": 8805,
"logo_path": "/77RCtjFOnX2cbQ24z4q7IDzqZV4.png",
"name": "Industrial Light & Magic",
"origin_country": "US"
}
],
"total_pages": 1,
"total_results": 4
}
This endpoint searches for companies by their original and alternative names.
curl --request GET \
--url https://api.themoviedb.org/3/search/company \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"id": 71126,
"logo_path": null,
"name": "Lucasfilm Kids",
"origin_country": ""
},
{
"id": 1,
"logo_path": "/tlVSws0RvvtPBwViUyOFAO0vcQS.png",
"name": "Lucasfilm Ltd.",
"origin_country": "US"
},
{
"id": 108270,
"logo_path": "/eDWGeg5tdVNcI8aBaaJ21bEBtFa.png",
"name": "Lucasfilm Animation",
"origin_country": "US"
},
{
"id": 8805,
"logo_path": "/77RCtjFOnX2cbQ24z4q7IDzqZV4.png",
"name": "Industrial Light & Magic",
"origin_country": "US"
}
],
"total_pages": 1,
"total_results": 4
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Company Example
The response is of type object
.