ACCOUNT
- Endpoints
AUTHENTICATION
- Endpoints
CERTIFICATIONS
- Endpoints
CHANGES
- Endpoints
COLLECTIONS
- Endpoints
COMPANIES
- Endpoints
CONFIGURATION
- Endpoints
CREDITS
FIND
GENRES
GUEST-SESSIONS
KEYWORDS
MOVIES
PEOPLE
PEOPLE-LISTS
REVIEWS
TV-EPISODE-GROUPS
TV-EPISODES
TV-SEASONS
TV-SERIES
TV-SERIES-LISTS
WATCH-PROVIDERS
SEARCH
Keyword
This endpoint searches for keywords by their name.
GET
/
3
/
search
/
keyword
Copy
curl --request GET \
--url https://api.themoviedb.org/3/search/keyword \
--header 'Authorization: Bearer <token>'
Copy
{
"page": 1,
"results": [
{
"id": 239553,
"name": "fight club"
}
],
"total_pages": 1,
"total_results": 1
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Keyword Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/search/keyword \
--header 'Authorization: Bearer <token>'
Copy
{
"page": 1,
"results": [
{
"id": 239553,
"name": "fight club"
}
],
"total_pages": 1,
"total_results": 1
}
Assistant
Responses are generated using AI and may contain mistakes.