Authentication
Account
Certifications
Configuration
Credits
Find
Keywords
Movies
- POSTAdd rating
- DELDelete rating
- GETFetch account states
- GETFetch alternative titles
- GETFetch external IDs
- GETFetch latest movie
- GETFetch movie changes
- GETFetch movie credits
- GETFetch movie details
- GETFetch movie images
- GETFetch movie keywords
- GETFetch movie List
- GETFetch movie recommendations
- GETFetch movie translation
- GETFetch release dates
- GETFetch similar movies
- GETFetch user reviews
- GETFetch videos
- GETFetch watch providers
People
People-Lists
Reviews
Search
Tv-episode-groups
Tv-episodes
Tv-seasons
Tv-Series
- POSTAdd rating
- DELDelete rating
- GETFetch account states
- GETFetch aggregate credits
- GETFetch alternative titles
- GETFetch content ratings
- GETFetch episode groups
- GETFetch external IDs
- GETFetch latest TV shows
- GETFetch reviews
- GETFetch series images
- GETFetch similar shows
- GETFetch theatrically screened
- GETFetch TV changes
- GETFetch TV credits
- GETFetch TV details
- GETFetch TV keywords
- GETFetch tv show translations
- GETFetch tv show videos
- GETFetch watch providers
- GETList TV series
Authentication
Account
Certifications
Configuration
Movies
- GETFetch movie details
- GETFetch account states
- GETFetch alternative titles
- GETFetch movie changes
- GETFetch movie credits
- GETFetch external IDs
- GETFetch movie images
- GETFetch movie keywords
- GETFetch latest movie
- GETFetch movie List
- GETFetch movie recommendations
- GETFetch release dates
- GETFetch user reviews
- GETFetch similar movies
- GETFetch movie translation
- GETFetch videos
- GETFetch watch providers
- POSTAdd rating
- DELDelete rating
Credits
Find
Search
Keywords
People Lists
People
Reviews
TV Series
- GETFetch TV details
- GETFetch account states
- GETFetch aggregate credits
- GETFetch alternative titles
- GETFetch TV changes
- GETFetch content ratings
- GETFetch TV credits
- GETFetch episode groups
- GETFetch external IDs
- GETFetch series images
- GETFetch TV keywords
- GETFetch latest TV shows
- GETList TV series
- GETFetch TV recommendations
- GETFetch reviews
- GETFetch theatrically screened
- GETFetch similar shows
- GETFetch tv show translations
- GETFetch tv show videos
- GETFetch watch providers
- POSTAdd rating
- DELDelete rating
TV Seasons
TV Episodes
TV Episode groups
Search
Search by keyword
This endpoint allows you to search for keywords by their name.
GET
/
3
/
search
/
keyword
Copy
curl --request GET \
--url https://api.themoviedb.org/3/3/search/keyword \
--header 'Authorization: Bearer <token>'
Copy
{
"page": 1,
"results": [
{
"id": 322942,
"name": "adventure"
},
{
"id": 195114,
"name": "space adventure"
},
{
"id": 280566,
"name": "action adventure"
},
{
"id": 221012,
"name": "adventure playgrounds"
},
{
"id": 224324,
"name": "choose your own adventure"
},
{
"id": 287256,
"name": "winter adventure"
},
{
"id": 175428,
"name": "adventurer"
},
{
"id": 233968,
"name": "polar adventure"
},
{
"id": 268687,
"name": "adventure games"
},
{
"id": 269709,
"name": "adventure comedy"
},
{
"id": 208649,
"name": "sea adventure"
},
{
"id": 209228,
"name": "european adventure"
},
{
"id": 210246,
"name": "children's adventure"
},
{
"id": 249680,
"name": "teen adventure"
},
{
"id": 33832,
"name": "eco adventure"
},
{
"id": 156136,
"name": "adventures in music"
},
{
"id": 178012,
"name": "islands of adventure"
},
{
"id": 261418,
"name": "adventure guide"
},
{
"id": 265570,
"name": "adventure of gamba"
},
{
"id": 293898,
"name": "adventure with kids"
}
],
"total_pages": 2,
"total_results": 37
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
keyword you wish to query
Example:
"adventure"
defaults to 1
Example:
"int32"
Response
200 - application/json
Search by keyword
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/3/search/keyword \
--header 'Authorization: Bearer <token>'
Copy
{
"page": 1,
"results": [
{
"id": 322942,
"name": "adventure"
},
{
"id": 195114,
"name": "space adventure"
},
{
"id": 280566,
"name": "action adventure"
},
{
"id": 221012,
"name": "adventure playgrounds"
},
{
"id": 224324,
"name": "choose your own adventure"
},
{
"id": 287256,
"name": "winter adventure"
},
{
"id": 175428,
"name": "adventurer"
},
{
"id": 233968,
"name": "polar adventure"
},
{
"id": 268687,
"name": "adventure games"
},
{
"id": 269709,
"name": "adventure comedy"
},
{
"id": 208649,
"name": "sea adventure"
},
{
"id": 209228,
"name": "european adventure"
},
{
"id": 210246,
"name": "children's adventure"
},
{
"id": 249680,
"name": "teen adventure"
},
{
"id": 33832,
"name": "eco adventure"
},
{
"id": 156136,
"name": "adventures in music"
},
{
"id": 178012,
"name": "islands of adventure"
},
{
"id": 261418,
"name": "adventure guide"
},
{
"id": 265570,
"name": "adventure of gamba"
},
{
"id": 293898,
"name": "adventure with kids"
}
],
"total_pages": 2,
"total_results": 37
}
Assistant
Responses are generated using AI and may contain mistakes.