Endpoints
- Account
- Authentication
- Certification
- Changes
- Collections
- Companies
- Configuration
- Credits
- Discover
- Find
- Genres
- Guest Session
- Keywords
- List
- Movie Lists
- Movies
- Networks
- People Lists
- People
- Reviews
- Search
- Trending
- TV Series Lists
- TV Series
- TV Seasons
- TV Episodes
- TV Episode Groups
- Watch Providers
- API Reference
Search
Multi
Use multi search when you want to search for movies, TV shows and people in a single request.
GET
/
3
/
search
/
multi
curl --request GET \
--url https://api.themoviedb.org/3/search/multi
{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/oHPoF0Gzu8xwK4CtdXDaWdcuZxZ.jpg",
"genre_ids": [
12,
10751,
16
],
"id": 762509,
"media_type": "movie",
"original_language": "en",
"original_title": "Mufasa: The Lion King",
"overview": "Mufasa, a cub lost and alone, meets a sympathetic lion named Taka, the heir to a royal bloodline. The chance meeting sets in motion an expansive journey of a group of misfits searching for their destiny.",
"popularity": 2684.622,
"poster_path": "/iBqXjFkAozQ1z2sfAiWwBimbiJX.jpg",
"release_date": "2024-12-18",
"title": "Mufasa: The Lion King",
"video": false,
"vote_average": 7.5,
"vote_count": 546
}
],
"total_pages": 1,
"total_results": 1
}
Query Parameters
Example:
"%22Mufasa%3A%20The%20Lion%20King%22"
Example:
"false"
Example:
"en-US"
Example:
"1"
Response
200 - application/json
Multi
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/search/multi
{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/oHPoF0Gzu8xwK4CtdXDaWdcuZxZ.jpg",
"genre_ids": [
12,
10751,
16
],
"id": 762509,
"media_type": "movie",
"original_language": "en",
"original_title": "Mufasa: The Lion King",
"overview": "Mufasa, a cub lost and alone, meets a sympathetic lion named Taka, the heir to a royal bloodline. The chance meeting sets in motion an expansive journey of a group of misfits searching for their destiny.",
"popularity": 2684.622,
"poster_path": "/iBqXjFkAozQ1z2sfAiWwBimbiJX.jpg",
"release_date": "2024-12-18",
"title": "Mufasa: The Lion King",
"video": false,
"vote_average": 7.5,
"vote_count": 546
}
],
"total_pages": 1,
"total_results": 1
}