GET
/
3
/
search
/
keyword
curl --request GET \
  --url https://api.themoviedb.org/3/search/keyword \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "results": [
    {
      "id": 1721,
      "name": "fight"
    },
    {
      "id": 4678,
      "name": "stick fighting"
    },
    {
      "id": 5380,
      "name": "virtual fight"
    },
    {
      "id": 14696,
      "name": "bloody fight"
    },
    {
      "id": 17977,
      "name": "underground fighting"
    },
    {
      "id": 18109,
      "name": "knife fight"
    },
    {
      "id": 68643,
      "name": "food fight"
    },
    {
      "id": 155464,
      "name": "over-the-hill fighter"
    },
    {
      "id": 155701,
      "name": "cock fighting"
    },
    {
      "id": 217041,
      "name": "fight night"
    },
    {
      "id": 217367,
      "name": "tavern fight"
    },
    {
      "id": 252315,
      "name": "fight against the rich"
    },
    {
      "id": 221838,
      "name": "women fighters"
    },
    {
      "id": 223071,
      "name": "foo fighters"
    },
    {
      "id": 168593,
      "name": "fake fight"
    },
    {
      "id": 256306,
      "name": "fight for the fallen"
    },
    {
      "id": 170703,
      "name": "snowball fight"
    },
    {
      "id": 224692,
      "name": "fighting games"
    },
    {
      "id": 225356,
      "name": "epic fights"
    },
    {
      "id": 174375,
      "name": "resistance fighter"
    }
  ],
  "total_pages": 7,
  "total_results": 130
}

Authorizations

Authorization
string
header
required

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

Query Parameters

query
string
required

This is the keyword we want to search for in the database.

Example:

"fight"

page
integer

Indicates which page of results to return. Default is the first page (1).

Example:

1

Response

200 - application/json

keyword

The response is of type object.