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 - Suggested related search query",
"score": "Float - Relevance score of the suggestion",
"suggested_url": "String - URL to the suggested search page",
"serpapi_suggested_url": "String - SerpApi link to fetch suggested search results"
}
],
...
}