Company
This endpoint allows you to search for companies by their original, translated, and alternative names.
GET
/
Company
Copy
curl --request GET \
--url https://api.themoviedb.org/ \
--header 'Authorization: Bearer <token>'
Copy
{
"page": 1,
"results": [
{
"id": 178464,
"logo_path": "/tyHnxjQJLH6h4iDQKhN5iqebWmX.png",
"name": "Netflix",
"origin_country": "US"
},
{
"id": 198834,
"logo_path": "/tyHnxjQJLH6h4iDQKhN5iqebWmX.png",
"name": "Netflix",
"origin_country": "GB"
},
{
"id": 185004,
"logo_path": "/tyHnxjQJLH6h4iDQKhN5iqebWmX.png",
"name": "Netflix",
"origin_country": "JP"
},
{
"id": 171251,
"logo_path": "/AqUAfMC270bGGK09Nh3mycwT1hY.png",
"name": "Netflix Animation",
"origin_country": "US"
},
{
"id": 145174,
"logo_path": null,
"name": "Netflix International Pictures",
"origin_country": "US"
},
{
"id": 192478,
"logo_path": null,
"name": "Netflix Anime Creators' Base",
"origin_country": "JP"
}
],
"total_pages": 1,
"total_results": 6
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Company
The response is of type object
.
Company
Copy
curl --request GET \
--url https://api.themoviedb.org/ \
--header 'Authorization: Bearer <token>'
Copy
{
"page": 1,
"results": [
{
"id": 178464,
"logo_path": "/tyHnxjQJLH6h4iDQKhN5iqebWmX.png",
"name": "Netflix",
"origin_country": "US"
},
{
"id": 198834,
"logo_path": "/tyHnxjQJLH6h4iDQKhN5iqebWmX.png",
"name": "Netflix",
"origin_country": "GB"
},
{
"id": 185004,
"logo_path": "/tyHnxjQJLH6h4iDQKhN5iqebWmX.png",
"name": "Netflix",
"origin_country": "JP"
},
{
"id": 171251,
"logo_path": "/AqUAfMC270bGGK09Nh3mycwT1hY.png",
"name": "Netflix Animation",
"origin_country": "US"
},
{
"id": 145174,
"logo_path": null,
"name": "Netflix International Pictures",
"origin_country": "US"
},
{
"id": 192478,
"logo_path": null,
"name": "Netflix Anime Creators' Base",
"origin_country": "JP"
}
],
"total_pages": 1,
"total_results": 6
}
Assistant
Responses are generated using AI and may contain mistakes.