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
Companies
Details
This endpoint allows you to retrieve the details of an entertainment company by Id.
GET
/
3
/
company
/
{company_id}
Copy
curl --request GET \
--url https://api.themoviedb.org/3/company/%7B{company_id}%7D \
--header 'Authorization: Bearer <token>'
Copy
{
"description": "",
"headquarters": "Los Gatos, California",
"homepage": "https://www.netflix.com",
"id": 178464,
"logo_path": "/tyHnxjQJLH6h4iDQKhN5iqebWmX.png",
"name": "Netflix",
"origin_country": "US",
"parent_company": null
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Details
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/company/%7B{company_id}%7D \
--header 'Authorization: Bearer <token>'
Copy
{
"description": "",
"headquarters": "Los Gatos, California",
"homepage": "https://www.netflix.com",
"id": 178464,
"logo_path": "/tyHnxjQJLH6h4iDQKhN5iqebWmX.png",
"name": "Netflix",
"origin_country": "US",
"parent_company": null
}
Assistant
Responses are generated using AI and may contain mistakes.