Discover/Walmart API
live

Walmart APIwalmart.com

Search Walmart products, retrieve pricing and specs, read customer reviews, browse categories, and look up store locations via a single REST API.

This API takes change requests — .
Endpoint health
verified 3d ago
get_category_listings
get_product_details
get_store_locations
search_grocery_products
get_product_reviews
6/6 passing latest checkself-healing
Endpoints
6
Updated
4d ago

What is the Walmart API?

This API gives programmatic access to Walmart.com across 6 endpoints, covering product search, full item details, customer reviews, category browsing, grocery search, and store directory data. The search_products endpoint returns paginated product summaries including price, rating, review count, and sponsored status, while get_product_details exposes brand, seller identity, variant criteria, and the full image array for any individual item.

This call costs3 credits / call— charged only on success
Try it
Page number for pagination
Sort order for results
Search keyword (e.g. 'laptop', 'wireless headphones')
Facet filter string to narrow results (e.g. 'brand:Samsung')
api.parse.bot/scraper/17a61761-c01e-4c8c-8a28-89538156d89e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/17a61761-c01e-4c8c-8a28-89538156d89e/search_products?page=1&sort=best_match&query=laptop' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalmissing one? ·

Full-text search over Walmart product catalog. Returns paginated product summaries with price, rating, and availability badges. Supports sorting and facet filtering. Each ProductSummary can be drilled into via get_product_details for full specifications.

Input
ParamTypeDescription
pageintegerPage number for pagination
sortstringSort order for results
queryrequiredstringSearch keyword (e.g. 'laptop', 'wireless headphones')
filtersstringFacet filter string to narrow results (e.g. 'brand:Samsung')
Response
{
  "type": "object",
  "fields": {
    "items": "array of product summary objects with id, us_item_id, name, price, rating, review_count, image, url, badge, is_sponsored",
    "facets": "array of available filter facets",
    "total_pages": "integer total number of pages",
    "current_page": "integer current page number or null",
    "total_results": "integer total number of matching products"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": "24H72HS7PA9J",
          "url": "https://www.walmart.com/ip/example/19075520026",
          "name": "Lenovo IdeaPad Slim 3x 15.3\" Laptop",
          "badge": "",
          "image": "https://i5.walmartimages.com/seo/example.jpeg",
          "price": 449,
          "rating": 4.5,
          "us_item_id": "19075520026",
          "is_sponsored": true,
          "review_count": 119
        }
      ],
      "facets": [],
      "total_pages": 14,
      "current_page": null,
      "total_results": 67
    },
    "status": "success"
  }
}

About the Walmart API

Product Search and Detail

search_products accepts a required query string plus optional sort, page, and filters parameters (e.g. brand:Samsung). Each result in the items array includes us_item_id, price, rating, review_count, badge, and is_sponsored. The facets array and total_results field let you build filter UIs or measure category depth. To go deeper on any item, pass its us_item_id or a full product URL to get_product_details, which returns brand, seller (name and id), currency, images, variants, and the current price.

Reviews and Category Data

get_product_reviews takes a product_id (the us_item_id from search or detail) and an optional page number. Each entry in the reviews array carries rating, reviewText, userNickname, and reviewSubmissionTime. The pagination object includes currentSpan, next, previous, and pages fields alongside total_reviews and average_rating at the top level. get_category_listings mirrors the shape of search_products but scopes results to a Walmart category ID (e.g. 1115193 for electronics); an optional slug aligns the request to a specific browse URL path.

Grocery Search and Store Locations

search_grocery_products scopes results by a required 5-digit zip_code, returning store-specific pricing and availability. Each product object includes brand (nullable), package_size parsed from the product name, price, price_per_unit, protein_per_serving, and serving. get_store_locations takes a 2-letter US state abbreviation and returns every Walmart location in that state with store_id, store_type, address, phone, hours, open_24_hours, and a services array. Response time for this endpoint scales with the number of cities in the state.

Reliability & maintenanceVerified

The Walmart API is a managed, monitored endpoint for walmart.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when walmart.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official walmart.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track Walmart price changes on specific items using get_product_details and the price field
  • Compare sponsored vs. organic product placement in search results via the is_sponsored flag in search_products
  • Aggregate customer sentiment by pulling reviewText and rating fields from get_product_reviews across multiple products
  • Build a store locator showing hours, services, and phone numbers using get_store_locations filtered by state
  • Monitor in-store grocery pricing by ZIP code for a specific keyword using search_grocery_products and price_per_unit
  • Enumerate all products in an electronics or food department using get_category_listings with known category IDs
  • Identify seller diversity on Walmart marketplace by extracting the seller object from get_product_details across a product set
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Walmart have an official developer API?+
Walmart does offer an official API through the Walmart Open API program (developer.walmart.com), primarily targeting marketplace sellers for order and inventory management. It does not expose consumer-facing product search, reviews, or store directory data in the same form this API covers.
What does `get_product_details` return beyond price and name?+
The endpoint returns brand, seller (name and id), currency, an images array of full-resolution URLs, a variants array of variant criteria objects, and the us_item_id. The rating field is nullable — some items have no reviews yet.
How does grocery search differ from the general product search?+
search_grocery_products requires a zip_code parameter to scope results to a specific store's inventory and pricing. It also returns grocery-specific fields like package_size, price_per_unit, protein_per_serving, and serving that are absent from the general search_products response.
Are Walmart+ membership prices or subscription details available?+
Not currently. The API returns standard retail pricing from price fields in product and grocery endpoints but does not expose Walmart+ member pricing, savings badges, or subscription plan data. You can fork the API on Parse and revise it to add an endpoint targeting those fields if they become accessible.
Does `get_store_locations` cover Puerto Rico or other US territories?+
The endpoint accepts 2-letter US state abbreviations and is documented for US states. Coverage for territories like Puerto Rico is not confirmed. For states with many cities the response time is longer because results are gathered city by city — plan timeouts accordingly.
Page content last updated . Spec covers 6 endpoints from walmart.com.
Related APIs in EcommerceSee all →
walmart.com.mx API
Search and browse Walmart Mexico's product catalog to access real-time pricing, availability, and detailed product information across all categories. Find similar items and compare options to make informed shopping decisions.
walmart.ca API
Search Walmart Canada products and retrieve detailed information like prices, availability, and specifications. Find nearby Walmart pharmacy locations to check services and hours.
asda.com API
Access data from asda.com.
amazon.com API
Search and browse Amazon products, reviews, offers, and deals, then manage your shopping cart all through a single integration. Get detailed product information, seller profiles, and best sellers to compare prices and make informed purchasing decisions.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
verkkokauppa.com API
Search and browse products from Verkkokauppa.com to find items across categories, check real-time prices and availability, read customer reviews, and discover deals in outlet and clearance sections. Filter products by your preferences and get detailed product information including specifications and store stock levels.
ikea.com API
Search and browse IKEA's full product catalog to find items by category, compare measurements, read customer reviews, and check real-time store availability and current deals. Discover new arrivals and best-selling products to help you shop smarter and find exactly what you need.
instacart.com API
Search for grocery products across multiple retailers, view store locations and availability, and access detailed product information including prices and descriptions. Find the best deals and nearest stores offering the items you need.