ACCOUNT
- Endpoints
AUTHENTICATION
- Endpoints
CERTIFICATIONS
- Endpoints
CHANGES
- Endpoints
COLLECTIONS
- Endpoints
COMPANIES
- Endpoints
CONFIGURATION
- Endpoints
CREDITS
FIND
GENRES
GUEST-SESSIONS
KEYWORDS
MOVIES
PEOPLE
PEOPLE-LISTS
REVIEWS
TV-EPISODE-GROUPS
TV-EPISODES
TV-SEASONS
TV-SERIES
TV-SERIES-LISTS
WATCH-PROVIDERS
SEARCH
Company
This endpoint searches for companies by their original and alternative names.
GET
/
3
/
search
/
company
Copy
curl --request GET \
--url https://api.themoviedb.org/3/search/company \
--header 'Authorization: Bearer <token>'
Copy
{
"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
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Company Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/search/company \
--header 'Authorization: Bearer <token>'
Copy
{
"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
}
Assistant
Responses are generated using AI and may contain mistakes.