GET
/
3
/
search
/
keyword
curl --request GET \
  --url https://api.themoviedb.org/3/search/keyword \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "results": [
    {
      "id": 239553,
      "name": "fight club"
    }
  ],
  "total_pages": 1,
  "total_results": 1
}

Authorizations

Authorization
string
header
required

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

Query Parameters

query
string
Example:

"Fight%20Club"

page
string
Example:

"1"

Response

200 - application/json

Keyword Example

The response is of type object.