~ / endpoints / Review API

Walmart Review Scraper API

Our Walmart review scraper takes any item URL or us_item_id and returns the overall rating, the 1-to-5 star distribution, and a page of full customer reviews: text, title, date, verified-purchase flag, and helpful-vote counts, all as JSON.

Get a free API keyBrowse the endpoints
1,000
free requests / mo
2.6s
median response
JSON
structured output
1-5
star distribution

Why it is hard

Walmart's review text loads inside the item page's __NEXT_DATA__ blob behind a residential-only wall, so a datacenter fetch returns a challenge instead of reviews. Scraping it by hand means parsing that shifting blob and rebuilding the star breakdown yourself.

Quickstart

cURL
curl "https://api.walmartscraperapi.com/api/v1/walmart/reviews?url=https://www.walmart.com/ip/808715278&api_key=$API_KEY"
Python
import requests

BASE = "https://api.walmartscraperapi.com"
API_KEY = "YOUR_API_KEY"

# Pass a Walmart /ip/ URL, or use the id alias for a us_item_id.
data = requests.get(
    f"{BASE}/api/v1/walmart/reviews",
    params={
        "url": "https://www.walmart.com/ip/808715278",
        "api_key": API_KEY,
    },
    timeout=30,
).json()

print(data["overall_rating"], "from", data["total_reviews"], "reviews")
print("stars 5..1:", data["rating_distribution"])

for r in data["reviews"]:
    tag = "verified" if r["verified_purchase"] else "unverified"
    print(r["rating"], tag, r["reviewer_name"], "-", r["title"])

Response

200 OK
{
  "us_item_id": "808715278",
  "overall_rating": 4.5,
  "total_reviews": 4721,
  "rating_distribution": {
    "1": 244,
    "2": 112,
    "3": 216,
    "4": 596,
    "5": 3553
  },
  "reviews": [
    {
      "review_id": "393669526",
      "reviewer_name": "Laurie",
      "rating": 5,
      "title": "Great Cuisinart coffeemaker",
      "text": "Love the new sleek look of this Cuisinart 12 Cup Coffeemaker (DCC-1220 Series). I also like some of the new features ex, displaying how long the coffee has been brewed...",
      "review_date": "7/29/2025",
      "verified_purchase": true,
      "positive_feedback": 3,
      "negative_feedback": 0,
      "badges": ["Verified Purchase"]
    },
    {
      "review_id": "421664809",
      "reviewer_name": "Robert",
      "rating": 3,
      "title": "Multiple Problems",
      "text": "Not nearly as good as my previous Cuisinart. Coffeepot lid remains attached to coffee pot making it difficult to clean...",
      "review_date": "4/4/2026",
      "verified_purchase": true,
      "positive_feedback": 5,
      "negative_feedback": 1,
      "badges": ["Verified Purchase"]
    }
  ]
}
FieldTypeDescription
us_item_idstringThe Walmart listing id these reviews belong to.
overall_ratingnumberThe item's average overall rating.
total_reviewsintegerTotal number of reviews on the item.
rating_distributionobjectCount of reviews per star, keyed 1 through 5.
reviewsarrayThe reviews on this page, each an object with the fields below.
reviews[].review_idstringWalmart's unique id for the review.
reviews[].reviewer_namestringThe reviewer's display nickname.
reviews[].ratingintegerThe star rating this reviewer gave, 1 to 5.

Params

ParameterRequiredDefaultNotes
urlrequired-The Walmart item page URL, e.g. https://www.walmart.com/ip/808715278. This is the primary input. Required unless you pass id.
idoptional-Alias for the numeric Walmart us_item_id, e.g. 808715278. We build the /ip/{id} URL from it. One of url or id is required.
countryoptional-Optional two-letter country code to fetch the item as seen from that region.
api_keyrequired-Your API key, passed as a query parameter. Get one free at signup.

Use it for

>

Product sentiment analysis

Pull review text and ratings across a catalog to score customer sentiment and surface the phrases buyers repeat about each item.
>

Star-distribution monitoring

Store rating_distribution over time so a drift toward 1 and 2 star reviews shows up before the average rating visibly drops.
>

Voice-of-customer feeds

Route new reviews into a dashboard or Slack channel so product and support teams read fresh feedback the day it lands.
>

Competitor review mining

Read reviews on rival listings to find recurring complaints and feature requests you can answer in your own product.

Pricing

PlanPriceBest for
Free1,000 requestsTesting and small jobs
Pro$0.60 / 1kProduction workloads
Pay-as-you-go$0.90 / 1kSpiky or one-off volume

Median response 2.6s. You only pay for successful requests.

FAQ

What is a Walmart review scraper?

A Walmart review scraper is a tool that reads a Walmart item's public reviews and returns them in a structured format. Our Walmart review scraper API takes a product URL or us_item_id and returns the overall rating, the 1-to-5 star distribution, and a page of full reviews with text, title, date, verified-purchase flag, and helpful-vote counts as JSON.

How many reviews does one call return?

One call returns the first page of reviews for the item, along with the overall_rating, total_reviews, and the full rating_distribution. The reviews array holds the individual reviews from that page. The summary fields describe every review on the listing, so you always see the complete rating picture even from a single request.

Can I tell which reviews are from verified purchases?

Yes. Each review includes a verified_purchase boolean and a badges array carrying labels such as Verified Purchase. You can filter or weight your analysis to confirmed buyers by checking that flag, which is useful when you want to discount reviews that Walmart has not tied to a purchase.

Why does scraping Walmart reviews directly fail?

Walmart serves reviews inside the item page's __NEXT_DATA__ JSON and blocks datacenter IP ranges, so a direct fetch from a cloud server usually returns a challenge screen rather than the reviews. Our API routes through residential IPs, handles the anti-bot layer, and parses that JSON, which is why it returns structured review data where a plain request does not.

Do I get the star rating breakdown?

Yes. Every response includes rating_distribution, an object keyed 1 through 5 with the number of reviews at each star level, plus the overall_rating and total_reviews. That lets you chart how ratings are spread and track shifts in the distribution over time rather than watching only the single average number.

How fast is the Walmart review scraper API?

Median end-to-end response is about 2.6 seconds, which includes residential proxy routing, anti-bot handling, retries, and parsing. The rating summary, star distribution, and first page of reviews all come back in that one call.

Get review api as JSON
Free plan, 1,000 requests. No credit card required.
Get a free API key All endpoints