eBay Related Searches API

eBay searches that may be related to other search terms are presented with related search section. They can be seen on the top of the search page.


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

Head to the playground for a live and interactive demo.

API Examples

Results for: Coffee

Results for: Coffee

JSON Example

{
  ...
  "related_searches": [
    {
      "query": "ground coffee",
      "link": "https://www.ebay.com/sch/i.html?_nkw=ground+coffee&_sop=12"
    },
    {
      "query": "coffee beans",
      "link": "https://www.ebay.com/sch/i.html?_nkw=coffee+beans&_sop=12"
    },
    {
      "query": "coffee pods",
      "link": "https://www.ebay.com/sch/i.html?_nkw=coffee+pods&_sop=12"
    },
    ...
  ],
  ...
}

JSON structure overview

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