Walmart Related Queries API

When SerpApi encounters related queries, we add them to our JSON output as the related_queries array. We are able to extract its suggested, score, suggested_url, serpapi_suggested_url.


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

Head to the playground for a live and interactive demo.

API Examples

JSON structure overview

{
  ...
  "related_queries": [
    {
      "suggested": "String",
      "score": "String",
      "suggested_url": "String",
      "serpapi_suggested_url": "String"
    }
  ],
  ...
}