GET
/
3
/
search
/
company
curl --request GET \
  --url https://api.themoviedb.org/3/search/company \
  --header 'Authorization: Bearer <token>'
{
  "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

Authorization
string
header
required

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

Query Parameters

query
string
Example:

"Lucasfilm"

page
string
Example:

"1"

Response

200 - application/json

Company Example

The response is of type object.