Bing Related Searches API

Bing searches that may be related to other search terms are presented with related search section, typically at the bottom of the search page.

API Examples

JSON structure overview

{
  ...
  "related_searches": [
    {
      "query": "String - Query of the related search",
      "link":  "String - Link to the Google search"
    },
    ...
  ],
  ...
}

Results for: Coffee

Results for: Coffee

JSON Example

{
  ...
  "related_searches": [
    {
      "query": "coffee for less k cups",
      "link": "https://www.bing.com/search?q=coffee+for+less+k+cups&FORM=QSRE1"
    },
    {
      "query": "buy coffee online",
      "link": "https://www.bing.com/search?q=buy+coffee+online&FORM=QSRE2"
    },
    {
      "query": "sd coffee company",
      "link": "https://www.bing.com/search?q=sd+coffee+company&FORM=QSRE3"
    },
    ...
  ],
  ...
}