Walmart Price Tracker avatar

Walmart Price Tracker

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Walmart Price Tracker

Walmart Price Tracker

Track public Walmart product search results across the supported US, Canada, and Mexico country sites. Export retail and marketplace records with title, brand, price, savings text, rating, review count, seller, image, product URL, source URL, country, query, and rank.

Pricing

from $3.00 / 1,000 results

Rating

5.0

(1)

Developer

TrueFetch

TrueFetch

Maintained by Community

Actor stats

1

Bookmarked

5

Total users

1

Monthly active users

9 hours ago

Last modified

Share

Affiliate disclosure: Apify links on this page may include referral parameters. If you sign up through one of these links, TrueFetch may earn a commission from Apify at no extra cost to you. Pricing, features, and Actor access are unaffected.

Walmart Price Tracker US CA MX Result Event Walmart Prices Telegram Support Telegram Group

Walmart Price Tracker โ€” Product Price, Rating & Search Result API

Track public Walmart product search results by keyword across supported US, Canada, and Mexico country sites. Export retail and marketplace records with title, brand, price, savings text, rating, review count, seller, image, product URL, source URL, country, query, and rank. Returns clean JSON / CSV / Excel for retail price monitoring, marketplace seller analysis, deal tracking, and AI shopping workflows.

TL;DR (40-word answer): Walmart Price Tracker is a no-login Apify Actor for public Walmart search-result data across supported country sites. It returns normalized records with price, savings text, seller, rating, source URL, country, query, and rank. Pricing uses the result event from $0.0088 per result. Last updated 2026-06-29.

What it is NOT: Walmart Price Tracker is not a checkout bot, Walmart seller API, or store-level inventory counter. It reads public Walmart product search results and returns normalized product records.

Walmart Price Tracker is an Apify Actor that accepts keyword, country, and max_results, then exports a source-linked product dataset with standardized fields for analysis. It keeps the user's query visible in query, preserves public source context in source_url, and does not hide platform-specific ranking behavior behind artificial sorting. Maintained by TrueFetch on the Apify Store.


๐Ÿ›’ Why choose Walmart Price Tracker

Walmart Price Tracker is best for retail analytics teams, ecommerce sellers, deal feeds, and AI agents that need current Walmart product data across the countries exposed in the input schema.

  • Country input supports United States, Canada, and Mexico from the current schema, so currency, seller context, availability wording, and ranking should be compared by country.
  • Walmart retail and marketplace context stays visible through seller, savings_text, stock_text, source_url, site, country, and rank when the public result exposes those signals.
  • Retail fields include title, brand, price, savings text, rating, review count, seller, stock text, image URL, product URL, source URL, and query when available.
  • Output follows the shared 58-field product schema so Walmart rows can be analyzed alongside other shopping actors.
  • Pay-per-result pricing uses the result event for delivered records.

๐Ÿš€ Quick Start โ€” run in 3 steps

Run in Apify Console

  1. Open the Actor โ€” go to Walmart Price Tracker on Apify and click Try for free.
  2. Configure inputs โ€” enter keyword, choose country, and set max_results.
  3. Click Start โ€” the Actor streams product records to the default dataset. Export as JSON, JSONL, CSV, Excel, XML, RSS, or pull via the dataset API.

Run via Apify API

curl -X POST "https://api.apify.com/v2/acts/TrueFetch~walmart-price-tracker/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"keyword": "air fryer",
"country": "United States",
"max_results": 100
}'

Run via MCP (for AI agents)

Walmart Price Tracker is callable from Claude, ChatGPT, Cursor, and any MCP-compatible client through the Apify MCP Server. Reference the Actor as TrueFetch/walmart-price-tracker and pass the same JSON input as above.


โš™๏ธ Input parameters

ParameterTypeRequiredDescriptionExample
keywordstringyesProduct search phrase, brand, model, category, or marketplace query to send to Walmart.air fryer
countrystringyesCountry/storefront to query. Supported values: United States, Canada, and Mexico.United States
max_resultsintegeryesMaximum number of product records to return. The actor stops at this user limit or the platform's available result limit, whichever comes first.100

Supported country values: United States, Canada, and Mexico.

Default behavior: the Actor sends the supplied input through the platform adapter, respects the platform's public search behavior, and stops at max_results or the platform's available result boundary.

{
"keyword": "air fryer",
"country": "United States",
"max_results": 100
}

๐Ÿ“ฆ Output dataset

Each run writes normalized product records to the default Apify dataset. The schema contains 58 product-analysis fields so records from different shopping platforms can be compared without renaming columns. Optional fields stay empty when the source platform does not expose them.

FieldTypeDescription
titlestring/nullProduct or listing title returned by the source platform.
brandstring/nullProduct brand when the platform exposes it clearly.
price, currency, price_textnumber/string/nullNumeric price, ISO currency, and original display price text for verification.
was_price, discount_pct, discount_text, promo_textmixed/nullPromotion and discount signals when present on the source.
stock_status, stock_textstring/nullNormalized and original availability text.
rating, review_countnumber/integer/nullPublic rating and review count when available.
seller, seller_url, seller_scorestring/number/nullSeller or store signals when exposed by the platform.
main_image, image_urlsstring/array/nullProduct image URL fields with non-product placeholders filtered out.
product_id, sku, gtin, mpn, modelstring/nullProduct identifiers when the source provides them.
category, breadcrumbs, features, specificationsmixed/nullProduct categorization, bullet points, and specs when available.
shipping_text, shipping_cost, delivery_text, pickup_text, return_textmixed/nullFulfillment, pickup, delivery, and return signals when present.
platform, site, country, product_url, source_url, query, rankstring/integer/nullSource traceability fields used to audit query-to-result correctness.
sponsored, processor, processed_atboolean/string/nullSponsored flag when known, actor URL, and UTC processing timestamp.

Sample output

{
"main_image": "https://i5.walmartimages.com/asr/example.jpeg",
"image_urls": [
"https://i5.walmartimages.com/asr/example.jpeg"
],
"title": "Ninja AF101 Air Fryer 4 Quart",
"brand": "Ninja",
"category": "Kitchen appliances",
"price": 79.0,
"currency": "USD",
"price_text": "$79.00",
"stock_status": "in_stock",
"stock_text": "In stock",
"rating": 4.7,
"review_count": 12034,
"seller": "Walmart",
"platform": "Walmart",
"site": "walmart.com",
"country": "United States",
"product_url": "https://www.walmart.com/ip/123456789",
"source_url": "https://www.walmart.com/search?q=air+fryer",
"query": "air fryer",
"rank": 1,
"sponsored": false,
"processor": "https://apify.com/truefetch/walmart-price-tracker",
"processed_at": "2026-06-29T00:00:00+00:00"
}

๐Ÿ’ก Use cases

For price comparison researchers tracking Walmart deals

  • Problem: An analyst needs to compare Walmart prices and savings text for the same category across supported country sites.
  • How Walmart Price Tracker solves it: Run the same keyword by country and compare price, currency, price_text, savings_text, seller, rating, and stock_text.
  • Outcome: A source-linked Walmart price comparison dataset.

For ecommerce sellers tracking competitor listings

  • Problem: A seller needs recurring Walmart product data for category benchmarks, including seller and review signals when public search exposes them.
  • How Walmart Price Tracker solves it: Schedule weekly keyword runs and export title, brand, price, seller, review_count, rank, and product_url.
  • Outcome: Automated Walmart competitor monitoring with marketplace context.

For AI agents answering Walmart shopping queries

  • Problem: An AI assistant needs current Walmart product prices, seller signals, and availability text for a user query.
  • How Walmart Price Tracker solves it: Call the Actor through Apify API or MCP and filter returned records by price, rating, seller, stock, country, and product URL.
  • Outcome: Grounded Walmart answers with live product URLs.

๐Ÿ’ฐ Pricing, limits, and performance

FactValue
Pricing modelPay-per-event
Dataset billing eventresult
FREE result price$0.0088 per result (about $8.80 per 1,000 results)
GOLD / PLATINUM / DIAMOND result price$0.00792 per result
Result unitOne successful product/listing record pushed to the default dataset
Required inputskeyword, country, max_results
Supported countriesUnited States, Canada, and Mexico
Output schema58 normalized product fields
Login / cookies requiredNo user login, cookies, or marketplace API key required
Export formatsJSON, JSONL, CSV, Excel, XML, RSS, dataset API

You are billed for dataset results through the configured result charge event. Use max_results to control requested volume; the final count can be lower when the source platform returns fewer public matches.


โš–๏ธ Compared with alternatives

CapabilityWalmart Price TrackerManual browsingCustom scraper
Structured product recordsyesnoyou build it
Source URL and query retainedyesmanualdepends on implementation
Normalized price/rating/image fieldsyesnoyou maintain mapping
Respects platform public rankingyesmanual observationeasy to accidentally override
Apify dataset exports and APIyesnoyou build storage/export
Setup time to first runminutesminutes per querydays to weeks

Verdict. Walmart Price Tracker is built for retail and marketplace price intelligence where Walmart country site, seller, savings text, and original search rank need to stay visible.


โš ๏ธ Common mistakes to avoid

  1. Comparing countries as if they were one storefront. Walmart US, Canada, and Mexico can differ by currency, seller context, availability text, and ranking. Keep country in analysis.
  2. Ignoring marketplace seller context. Walmart results may include retailer and marketplace seller signals. Compare seller, price_text, and savings_text together.
  3. Treating missing optional fields as parser failures. Walmart does not expose every seller, stock, rating, or savings field on every result. Audit optional fields with source_url.
  4. Re-sorting without keeping rank. Preserve rank if you need to understand Walmart's original search order.
  5. Expecting checkout or seller-account data. This Actor returns public product/search data, not cart, order, Walmart Marketplace seller dashboard, or private API data.

๐Ÿ› ๏ธ Troubleshooting

ProblemLikely causeFix
Empty datasetThe keyword has no public results, the selected country is unsupported for that platform, or the platform returned no matches.Try a broader keyword, verify country, and compare with the generated source_url when available.
Fewer rows than max_resultsThe platform exposed fewer public results than requested or hit its own result boundary.Treat max_results as an upper bound, not a guarantee.
Price or rating is emptyThe source result did not expose that field for the item.Use price_text, stock_text, source_url, and product_url for audit.
Results look different from another runMarketplace algorithms, location, availability, ads, and ranking can change.Compare query, country, source_url, rank, and processed_at.

โ“ FAQ

What data does Walmart Price Tracker return?

Walmart Price Tracker returns normalized product records with fields such as title, brand, price, currency, price_text, rating, review_count, stock_text, seller, main_image, product_url, source_url, platform, site, country, query, rank, processor, and processed_at. Optional fields are populated only when the source platform exposes them.

How much does Walmart Price Tracker cost?

Pricing is pay-per-event. The dataset billing event is result; current tiered pricing starts at $0.0088 per result on FREE and $0.00792 per result on GOLD, PLATINUM, and DIAMOND. Check the Apify pricing panel for the final account-specific charge.

Which countries does Walmart Price Tracker support?

Supported country values are defined in the actor input schema. Current support: United States, Canada, and Mexico.

Does Walmart Price Tracker require a login or API key?

No. Walmart Price Tracker is designed for public product/search data and does not require a shopper login, cookies, or a marketplace API key from the user.


๐Ÿ”Œ Integrations

Walmart Price Tracker plugs into the Apify ecosystem:

  • Schedules โ€” run recurring price and search monitoring jobs (docs).
  • Webhooks โ€” POST completed runs to your pricing database, BI stack, or workflow tool on ACTOR.RUN.SUCCEEDED (docs).
  • Apify API โ€” use run-sync-get-dataset-items for blocking calls or runs for async jobs (docs).
  • MCP Server โ€” call the Actor from Claude, ChatGPT, Cursor, and other agents (docs).
  • No-code tools โ€” connect with Make, Zapier, n8n, Pipedream, Google Sheets, Airtable, and other dataset consumers.

๐Ÿงฑ Sister Actors from TrueFetch

Jobs

Shopping & Deals

Vehicles

Real Estate

Local Business & Food

Classifieds

Social Media

Videos & Text

Content & Articles


๐Ÿ“ž Support, changelog, last updated

Support

Changelog

  • 2026-06-29: Replaced stale template copy with Walmart Price Tracker SEO/GEO copy, current actor slug, current input schema, and normalized product dataset fields.

{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Walmart Price Tracker",
"applicationCategory": "BusinessApplication",
"operatingSystem": "Cloud",
"url": "https://apify.com/truefetch/walmart-price-tracker",
"description": "Track public Walmart product search results across supported US, Canada, and Mexico country sites. Export records with price, savings, seller, rating, source URL, country, query, and rank.",
"offers": {
"@type": "Offer",
"price": "0.0088",
"priceCurrency": "USD",
"description": "Pay-per-result pricing for the result event"
},
"provider": {
"@type": "Organization",
"name": "TrueFetch",
"url": "https://apify.com/truefetch"
}
}

Last updated: 2026-06-29. Schema: Product search and price tracking Actor. Maintained by TrueFetch.