Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Instructions to use the search endpoint to retrieve results and top trends (i.e. The most popular searches)links.

Step-by-step guide

You can search using the search function.

...

Code Block
languagejs
var options = {
    lang:'en',
	scope:'desktop'
}
    
empathySearch.search('term', 1, 10, options, function(data){
    //the data object will contain search results and top trendslinks
    alert('test');
});

...