Amazon Related Searches API

Amazon searches that may be related to other search terms are presented within the Related Searches section. They can be seen at the bottom of the search page.

API Examples

Results for: Coffee

Results for: Coffee

JSON Example

{
  ...
  "related_searches": [
    {
      "position": 1,
      "query": "coffee makers",
      "link": "https://www.amazon.com/s?k=coffee+makers&ref=rsl_sug_0_0&pd_rd_w=sGVyg&content-id=amzn1.sym.2e97d935-d5f5-4935-88bd-cb6d2a136d95:amzn1.sym.2e97d935-d5f5-4935-88bd-cb6d2a136d95&pf_rd_p=2e97d935-d5f5-4935-88bd-cb6d2a136d95&pf_rd_r=GCFP4AW47SFET7E3TVE1&pd_rd_wg=Nzf5P&pd_rd_r=6692b73a-5808-46e0-a6ab-074beb3d8518&qid=1744635959"
    },
    {
      "position": 2,
      "query": "coffee creamer",
      "link": "https://www.amazon.com/s?k=coffee+creamer&ref=rsl_sug_0_3&pd_rd_w=sGVyg&content-id=amzn1.sym.2e97d935-d5f5-4935-88bd-cb6d2a136d95:amzn1.sym.2e97d935-d5f5-4935-88bd-cb6d2a136d95&pf_rd_p=2e97d935-d5f5-4935-88bd-cb6d2a136d95&pf_rd_r=GCFP4AW47SFET7E3TVE1&pd_rd_wg=Nzf5P&pd_rd_r=6692b73a-5808-46e0-a6ab-074beb3d8518&qid=1744635959"
    },
    {
      "position": 3,
      "query": "coffee pods",
      "link": "https://www.amazon.com/s?k=coffee+pods&ref=rsl_sug_0_1&pd_rd_w=sGVyg&content-id=amzn1.sym.2e97d935-d5f5-4935-88bd-cb6d2a136d95:amzn1.sym.2e97d935-d5f5-4935-88bd-cb6d2a136d95&pf_rd_p=2e97d935-d5f5-4935-88bd-cb6d2a136d95&pf_rd_r=GCFP4AW47SFET7E3TVE1&pd_rd_wg=Nzf5P&pd_rd_r=6692b73a-5808-46e0-a6ab-074beb3d8518&qid=1744635959"
    },
    ...
  ],
  ...
}

JSON structure overview

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