Google Shopping People Also Search For Results API

SerpApi Google Shopping API scrapes the text, highlighted_words, link, and serpapi_link of searches done by other people at the result page.

JSON structure overview

{
  ...
  "people_also_search_for": [
    {
      "text": "String - Search text (Ex: 'PS5 Amazon')",
      "link": "String - Link to Google Shopping Page",
      "serpapi_link": "String - SerpApi URL to fetch the Google Shopping Link",
      "highlighted_words": "Array - Highlighted words in the search text"
    },
    ...
  ]
  ...
}

API Examples

People Also Search For Results Example for: q: Call of Duty, and device: mobile

People Also Search For Results Example for: q: Call of Duty, and device: mobile

JSON Example

{
  ...
  "people_also_search_for": [
    {
      "text": "call of duty game",
      "highlighted_words": [
        "call",
        "duty",
        "game"
      ],
      "link": "https://www.google.com/search?hl=en&gl=us&tbm=shop&q=call+of+duty+game&sa=X&ved=0ahUKEwiG28e6oq79AhVsjIkEHYxdApEQnsYHCLMU",
      "serpapi_link": "http://localhost:3000/search.json?device=mobile&engine=google_shopping&gl=us&google_domain=google.com&hl=en&location=Austin%2C+TX%2C+Texas%2C+United+States&q=call+of+duty+game&tbm=shop"
    },
    {
      "text": "call of duty warfare",
      "highlighted_words": [
        "call",
        "duty",
        "warfare"
      ],
      "link": "https://www.google.com/search?hl=en&gl=us&tbm=shop&q=call+of+duty+warfare&sa=X&ved=0ahUKEwiG28e6oq79AhVsjIkEHYxdApEQnsYHCLQU",
      "serpapi_link": "http://localhost:3000/search.json?device=mobile&engine=google_shopping&gl=us&google_domain=google.com&hl=en&location=Austin%2C+TX%2C+Texas%2C+United+States&q=call+of+duty+warfare&tbm=shop"
    },
    {
      "text": "call of duty black ops",
      "highlighted_words": [
        "call",
        "duty",
        "black",
        "ops"
      ],
      "link": "https://www.google.com/search?hl=en&gl=us&tbm=shop&q=call+of+duty+black+ops&sa=X&ved=0ahUKEwiG28e6oq79AhVsjIkEHYxdApEQnsYHCLUU",
      "serpapi_link": "http://localhost:3000/search.json?device=mobile&engine=google_shopping&gl=us&google_domain=google.com&hl=en&location=Austin%2C+TX%2C+Texas%2C+United+States&q=call+of+duty+black+ops&tbm=shop"
    },
    ...
  ],
  ...
}