Walmart Reviews API
Scrape Walmart Reviews data with one API call. Returns written customer reviews for a Walmart product, up to 50 per call, each with the full review text, star rating, author, date, helpful-vote count, verified-purchase flag, and any reviewer photos. Sortable by relevancy, recency, or rating, and filterable to a single star rating. Note that consecutive pages can repeat a small number of reviews when sorting by recency, because the underlying review feed shifts between calls; de-duplicate by review id when crawling.
Last updated July 2026Maintained by the SocialCrawl team
Searching 46 platforms in parallel
What can you do with the Reviews API?
The Reviews endpoint gives you structured Walmart data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/walmart/reviews?product_id=17835006350"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/walmart/reviews",
params={
'product_id': '17835006350',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/walmart/reviews?product_id=17835006350",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| product_id | Yes | Walmart product id, numeric or alphanumeric. The same id accepted by GET /v1/walmart/product. |
| page | No | Page number, starting at 1. Prefer the universal cursor parameter. |
| limit | No | Reviews per page, 1 to 50. Defaults to 10. |
| sort | No | Review ordering: relevancy (default), recent, rating_high_low, or rating_low_high. (relevancy | recent | rating_high_low | rating_low_high) |
| rating | No | Return only reviews with this exact star rating, 1 to 5. |
| country | No | Walmart marketplace as a two-letter country code: US (walmart.com, default) or CA (walmart.ca). A product id from one marketplace will not resolve in the other. (US | CA) |
How does the Walmart Reviews API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 46 platforms covering 10B+ monthly active users.
One schema, every platform
Query 46 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language — ready to use.
See your data before you code
Visual Data Explorer — paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usHow many Walmart reviews come back per call?
Can I filter to only one-star or five-star reviews?
How do I know whether a review is from a real purchaser?
Can consecutive pages return the same review twice?
What if a product has no written reviews?
Ask AI about SocialCrawl
Ready to scrape Walmart Reviews data?
Get your API key and start pulling Walmart data in under 60 seconds.
