Walmart Search

Description: Enable agents to search for products with Walmart.

Author: Arcade

Code: GitHub

Auth: API Key

PyPI VersionLicensePython VersionsWheel StatusDownloads

The Arcade Walmart Search toolkit provides a pre-built set of tools for interacting with Walmart. These tools make it easy to build agents and AI apps that can:

  • Search for products listed on Walmart stores;
  • Get details about a product.

Install

pip install arcade_search

pip installing the toolkit is only needed if you are self-hosting Arcade. You do not need to install the toolkit if you’re using Arcade Cloud.

Available Tools

Tool NameDescription
SearchWalmartProductsSearch for products listed on Walmart stores.
GetWalmartProductDetailsGet details about a product listed on Walmart.

If you need to perform an action that’s not listed here, you can get in touch with us to request a new tool, or create your own tools.

SearchWalmartProducts


Search for products listed on Walmart stores.

Parameters

  • keywords (string, required) Keywords to search for. E.g. ‘apple iphone’ or ‘samsung galaxy’
  • sort_by (enum WalmartSortBy, optional, Defaults to WalmartSortBy.RELEVANCE) Sort the results by the specified criteria. Defaults to WalmartSortBy.RELEVANCE.
  • min_price (float, optional, Defaults to None) Minimum price to filter the results.
  • max_price (float, optional, Defaults to None) Maximum price to filter the results.
  • next_day_delivery (bool, optional, Defaults to False) Whether to filter the results by next day delivery. Defaults to False (returns all products, regardless of delivery status).
  • page (int, optional, Defaults to 1) Page number to fetch. Defaults to 1 (first page of results). The maximum page value is 100.

GetWalmartProductDetails


Get details about a product listed on Walmart.

Parameters

  • item_id (string, required) Item ID. E.g. ‘414600577’. This can be retrieved from the search results of the SearchWalmartProducts tool.

Auth

The Arcade Walmart Search toolkit uses the SerpAPI to get product information from Walmart.

  • Secret:
    • SERP_API_KEY: Your SerpAPI API key.

Setting the SERP_API_KEY secret is only required if you are self-hosting Arcade. If you’re using Arcade Cloud, the secret is already set for you. To manage your secrets, go to the Secrets page in the Arcade Dashboard.