Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
Search
Company
This endpoint allows you to search for companies by their original, translated, and alternative names.
GET
curl --request GET \
--url https://api.themoviedb.org/ \
--header 'Authorization: Bearer <token>'
{
"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
.
curl --request GET \
--url https://api.themoviedb.org/ \
--header 'Authorization: Bearer <token>'
{
"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.