GET
/
3
/
search
/
company
curl --request GET \
  --url https://api.themoviedb.org/3/3/search/company \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "results": [
    {
      "id": 121067,
      "logo_path": null,
      "name": "Convergence Productions Pty",
      "origin_country": ""
    },
    {
      "id": 209306,
      "logo_path": null,
      "name": "Convergence Entertainment Group",
      "origin_country": ""
    },
    {
      "id": 7417,
      "logo_path": "/13GyIWMzFvDqJN6I6tZCQYzWr7L.png",
      "name": "Convergence Entertainment",
      "origin_country": "US"
    },
    {
      "id": 229552,
      "logo_path": null,
      "name": "Videofilm Convergence Group",
      "origin_country": ""
    },
    {
      "id": 235404,
      "logo_path": null,
      "name": "Impact Media Convergence Inc.",
      "origin_country": ""
    }
  ],
  "total_pages": 1,
  "total_results": 5
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

query
string

Company name you wish to query

Example:

"Convergence"

page
string

defaults to 1

Example:

"int32"

Response

200 - application/json

Search company

The response is of type object.