Search

Search

Returns a collection of relevant data matching a specified query. If no parameters are passed, it thrown an error. Otherwise, it lists the documents in the collection matching the specified parameters:

Search API Playground

The API playground is an interactive environment to make requests and preview an API endpoint.

q

Tes endpoint search with q as param

Method : GET

URL : /api/search?q=mission

Request :

var requestOptions = {
  method: 'GET',
  redirect: 'follow'
};
 
fetch("http://localhost:3000/api/search?q=mission", requestOptions)
  .then(response => response.text())
  .then(result => console.log(result))
  .catch(error => console.log('error', error));

Response : 200 - OK

{
  "movies": [
    {
      "id": 12,
      "created_at": "2023-02-02T14:11:48.389816+00:00",
      "name": "Mission: Impossible",
      "description": "When Ethan Hunt, the leader of a crack espionage team whose perilous operation has gone awry with no explanation, discovers that a mole has penetrated the CIA, he's surprised to learn that he's the No. 1 suspect. To clear his name, Hunt now must ferret out the real double agent and, in the process, even the score.",
      "image_url": "https://www.themoviedb.org/t/p/w300_and_h450_bestv2/l5uxY5m5OInWpcExIpKG6AR3rgL.jpg",
      "video_url": "https://youtu.be/vadCbBuUM0E",
      "release_date": "1996-05-22",
      "language": "English",
      "status": 2,
      "director_id": 10,
      "studio_id": 1
    },
    {
      "id": 13,
      "created_at": "2023-02-02T14:14:30.758263+00:00",
      "name": "Mission: Impossible II",
      "description": "With computer genius Luther Stickell at his side and a beautiful thief on his mind, agent Ethan Hunt races across Australia and Spain to stop a former IMF agent from unleashing a genetically engineered biological weapon called Chimera. This mission, should Hunt choose to accept it, plunges him into the center of an international crisis of terrifying magnitude.",
      "image_url": "https://www.themoviedb.org/t/p/w300_and_h450_bestv2/1VMWLpk9VXyYcEZ8w3uUhp0OF1v.jpg",
      "video_url": "https://youtu.be/vIpqpRuGrq4",
      "release_date": "2000-06-03",
      "language": "English",
      "status": 2,
      "director_id": 11,
      "studio_id": 1
    },
  ],
  "actors": [],
  "directors": [],
  "studios": []
}

URL : /api/search?q=tom

Request :

var requestOptions = {
  method: 'GET',
  redirect: 'follow'
};
 
fetch("http://localhost:3000/api/search?q=tom", requestOptions)
  .then(response => response.text())
  .then(result => console.log(result))
  .catch(error => console.log('error', error));

Response : 200 - OK

{
  "movies": [],
  "actors": [
    {
      "id": 1,
      "name": "Tom Cruise",
      "image_url": "https://www.themoviedb.org/t/p/w300_and_h450_bestv2/8qBylBsQf4llkGrWR3qAsOtOU8O.jpg",
      "gender": 1,
      "biography": "Thomas Cruise Mapother IV (born July 3, 1962), known professionally as Tom Cruise, is an American actor and producer. One of the world's highest-paid actors, he has received various accolades, including an Honorary Palme d'Or and three Golden Globe Awards, in addition to nominations for three Academy Awards. His films have grossed over $4 billion in North America and over $11.1 billion worldwide, making him one of the highest-grossing box office stars of all time.",
      "birthday": "1962-07-03",
      "instagram_url": "https://instagram.com/tomcruise/",
      "twitter_url": "https://twitter.com/tomcruise",
      "country_id": 1,
      "created_at": "2023-01-31T08:34:44.320445+00:00"
    },
    {
      "id": 12,
      "name": "Tom Holland",
      "image_url": "https://www.themoviedb.org/t/p/w300_and_h450_bestv2/hMp5y4Nro5pv4Nawyt3Ld9TsKfO.jpg",
      "gender": 1,
      "biography": "Thomas \"Tom\" Stanley Holland is an English actor and dancer.\n\nHe is best known for playing Peter Parker / Spider-Man in the Marvel Cinematic Universe and has appeared as the character in six films: Captain America: Civil War (2016), Spider-Man: Homecoming (2017), Avengers: Infinity War (2018), Avengers: Endgame (2019), Spider-Man: Far From Home (2019), and Spider-Man: No Way Home (2021).\n\nHe is also known for playing the title role in Billy Elliot the Musical at the Victoria Palace Theatre, London, as well as for starring in the 2012 film The Impossible.",
      "birthday": "1996-06-01",
      "instagram_url": "https://instagram.com/tomholland2013/",
      "twitter_url": "https://twitter.com/TomHolland1996",
      "country_id": 3,
      "created_at": "2023-02-01T22:50:44.33712+00:00"
    },
  ],
  "directors": [],
  "studios": []
}

Response :

{
    "error_code": "404",
    "message": "Not Found",
    "songs": [],
    "albums": [],
    "artists": [],
    "playlists": []
}