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.


The API endpoint is https://serpapi.com/search?engine=bing

Head to the playground for a live and interactive demo.

API Examples

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"
    },
    ...
  ],
  ...
}

JSON structure overview

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