Yahoo! Related Trending Searches API

For some searches, Yahoo search results include a related trending searches block. SerpApi is able to scrape, extract, and make sense of this information. Related Trending Searches Results are only present for desktop, and tablet searches.

API Examples

JSON structure overview

{
  ...
  "related_trending_searches": {
    "title": "String - Title related to query",
    "results": [
      { 
        "position": "Integer - Position of the trending search"
        "title": "String - Title of the trending search",
        "link": "String - Link to the trending search",
        "thumbnail": "String - URI of the thumbnail"
      }
      ...
    ],
    "show_more_link": "String - Search link with expanded 'related_trending_searches' item",
    "serpapi_link": "String - SerpApi link with expanded 'related_trending_searches' item",
    "fr2": "String - fr2 parameter of the serpapi_link to be reused for other searches"
  }
  ...
}