Walmart API endpoint
Use Crawlora's Walmart Product Reviews API to extract supported public Walmart data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/walmart/product/{item_id}/reviewsReturns the reviews snapshot embedded in a Walmart product page: average rating, total review count, the per-star rating breakdown, the recommended percentage, the top positive and top negative review, and a sample of recent reviews. This is a single on-page snapshot, not a full paginated feed. A product that exists but has no reviews returns zero counts and an empty reviews list. Credential-free public Walmart data, rendered from the product page through proxied browser renderers. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| item_id (path) | string | Yes | Walmart item id (the numeric id in a /ip/{id} URL) | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/walmart/product/%3Citem_id%3E/reviews" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
- A product that exists but has no reviews returns zero counts and an empty `reviews` list (`200`), not an error. - `average_rating` is the overall 0–5 rating; `recommended_percent` is the percentage of reviewers who recommend the product (0–100). - `rating_counts` is the per-star review-count distribution (`five_star`…`one_star`). - Each review carries `rating`, `title`, `text`, `author`, `submission_date`, `positive_feedback`, `negative_feedback`, and `review_id`. `top_positive_review` / `top_negative_review` use the same review shape. - Bot blocks, challenge pages, and malformed upstream payloads return `503`. Example response: ```json {"code":200,"msg":"OK","data":{"item_id":"6543706564","average_rating":4.3,"total_review_count":2452,"reviews_with_text_count":1345,"recommended_percent":87,"rating_counts":{"five_star":1698,"four_star":273,"three_star":150,"two_star":116,"one_star":215},"top_positive_review":{"rating":5,"title":"Great sound","text":"The noise cancellation is great!","author":"MusicFan","submission_date":"11/30/2025","review_id":"406499690"},"reviews":[{"rating":5,"text":"Love these earbuds.","author":"MusicFan","submission_date":"11/30/2025","review_id":"406499690"}]}} ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"item_id": "6543706564",
"average_rating": 4.3,
"total_review_count": 2452,
"reviews_with_text_count": 1345,
"recommended_percent": 87,
"rating_counts": {
"five_star": 1698,
"four_star": 273,
"three_star": 150,
"two_star": 116,
"one_star": 215
},
"top_positive_review": {
"rating": 5,
"title": "Great sound",
"text": "The noise cancellation is great!",
"author": "MusicFan",
"submission_date": "11/30/2025",
"review_id": "406499690"
},
"reviews": [
{
"rating": 5,
"text": "Love these earbuds.",
"author": "MusicFan",
"submission_date": "11/30/2025",
"review_id": "406499690"
}
]
}
}Request schema
No body schema
Response schema
#/definitions/walmart.reviewsResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | walmart.ReviewsResponse | No | ||||
| data.average_rating | number | No | 4.3 | |||
| data.item_id | string | No | 5689919121 | |||
| data.rating_counts | walmart.RatingBreakdown | No | ||||
| data.rating_counts.five_star | integer | No | 1698 | |||
| data.rating_counts.four_star | integer | No | 273 | |||
| data.rating_counts.one_star | integer | No | 215 | |||
| data.rating_counts.three_star | integer | No | 150 | |||
| data.rating_counts.two_star | integer | No | 116 | |||
| data.recommended_percent | number | No | 87 | |||
| data.reviews | array | No | ||||
| data.reviews[].author | string | No | MusicFan | |||
| data.reviews[].negative_feedback | integer | No | 1 | |||
| data.reviews[].positive_feedback | integer | No | 12 | |||
| data.reviews[].rating | number | No | 5 | |||
| data.reviews[].review_id | string | No | 406499690 | |||
| data.reviews[].submission_date | string | No | 11/30/2025 | |||
| data.reviews[].text | string | No | ||||
| data.reviews[].title | string | No | Great sound | |||
| data.reviews_with_text_count | integer | No | 1345 | |||
| data.top_negative_review | walmart.Review | No | ||||
| data.top_negative_review.author | string | No | MusicFan | |||
| data.top_negative_review.negative_feedback | integer | No | 1 | |||
| data.top_negative_review.positive_feedback | integer | No | 12 | |||
| data.top_negative_review.rating | number | No | 5 | |||
| data.top_negative_review.review_id | string | No | 406499690 | |||
| data.top_negative_review.submission_date | string | No | 11/30/2025 | |||
| data.top_negative_review.text | string | No | ||||
| data.top_negative_review.title | string | No | Great sound | |||
| data.top_positive_review | walmart.Review | No | ||||
| data.top_positive_review.author | string | No | MusicFan | |||
| data.top_positive_review.negative_feedback | integer | No | 1 | |||
| data.top_positive_review.positive_feedback | integer | No | 12 | |||
| data.top_positive_review.rating | number | No | 5 | |||
| data.top_positive_review.review_id | string | No | 406499690 | |||
| data.top_positive_review.submission_date | string | No | 11/30/2025 | |||
| data.top_positive_review.text | string | No | ||||
| data.top_positive_review.title | string | No | Great sound | |||
| data.total_review_count | integer | No | 2452 | |||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/walmart/product/%3Citem_id%3E/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms