Skip to main content
GET
/
Company
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

Authorization
string
header
required

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

Response

200 - application/json

Company

page
number
Example:

1

results
object[]
Example:
[
{
"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
number
Example:

1

total_results
number
Example:

6

I