Walmart API — Product Data for 50 Million Items
Programmatic access to the largest non-Amazon US retail catalog. Title, price, sellers, 90-day history, sales rank, and reviews on every item. 1,000 free calls per month, no card.
1,000 people search Google every month for "walmart api" — $6.43 average CPC.
What the Walmart API returns
Walmart operates two official APIs: the Marketplace API (first-party sellers only) and the Affiliate API (approved publishers only). Neither is open to general developers. retailerapi closes that gap with a single REST endpoint, no eligibility check, and a 1,000 call free tier.
Every product response includes 14 structured fields. The 4 always-present fields are item_id, title, brand, and current_price. The 4 commonly-present fields are image_url, buy_box_seller, category, and gtin. The 3 conditional fields are sales_rank, mpn, and price_history. The 2 enrichment arrays are seller listings (up to 25 per product) and cross_retailer cells (6 US retailers).
The pipeline polls public Walmart product pages every 6 hours, captures 1.8 million daily price changes, and aggregates into per-item daily lows, highs, and averages. Marketplace seller data refreshes hourly during business hours. Sales rank refreshes daily. Reviews refresh weekly. All cache is per-item, so a popular item refreshes every 6 hours regardless of how many people query it.
Quick start
# Product
curl https://api.retailerapi.com/v1/products/19667262713 \
-H "Authorization: Bearer rk_live_..."
# 90-day price history
curl "https://api.retailerapi.com/v1/products/19667262713/history?timeframe=90d&retailer=walmart" \
-H "Authorization: Bearer rk_live_..."
# Reviews
curl https://api.retailerapi.com/v1/products/19667262713/reviews \
-H "Authorization: Bearer rk_live_..."
# Seller profile
curl https://api.retailerapi.com/v1/sellers/101001 \
-H "Authorization: Bearer rk_live_..."Try real Walmart items
Click any card to see the full product page with live Walmart data.
Walmart API vs official APIs
| Feature | retailerapi | Walmart Marketplace API | Walmart Affiliate API |
|---|---|---|---|
| Eligibility | Any developer | Active seller | Approved publisher |
| Free tier | 1,000 calls / mo | None | None |
| Catalog access | All 50M items | Your listings only | Affiliate-eligible items |
| Price history | 90 to 387 days | No | No |
| Cross-retailer data | Yes, 5 chains | No | No |
| MCP server | Yes | No | No |