Walmart Reviews Results API
When SerpApi encounters featured item, we add them to our JSON output as the reviews_results
hash.
SerpApi JSON structure overview:
{
"reviews_results": {
"ratings": [
{
"stars": "Integer",
"count": "Integer"
},
],
"reviews": {
"recommended_percentage": "Float",
"rating": "Float",
"count": "Float",
"top_positive": {
"title": "String",
"text": "String",
"rating": "Float",
"recommended": "Boolean"
},
"top_negative": {
"title": "String",
"text": "String",
"rating": "Float",
"recommended": "Boolean"
},
"top_mentions": [
{
"score_percentage": "Float",
"name": "String",
"count": "Integer"
},
],
"customer_reviews": [
{
"title": "String",
"text": "String",
"rating": "Float",
"recommended": "Boolean"
}
]
}
}
}
Walmart Product reviews

{
...
"reviews_results": {
"ratings": [
{ "stars": 1, "count": 8 },
{ "stars": 2, "count": 3 },
{ "stars": 3, "count": 10 },
{ "stars": 4, "count": 37 },
{ "stars": 5, "count": 456 }
],
"reviews": {
"recommended_percentage": 40,
"rating": 4.8,
"count": 514,
"top_positive": {
"text": "We drink a lot of coffee. This is the 3rd time I ordered Maxwell House from Wal-Mart. You have the best prices, free shipping over $35 and I always get it with in a few days a.",
"rating": 5,
"recommended": true
},
"top_negative": {
"title": "coffee",
"text": "ICoffee personally did not care for the taste,chickery was what I tasted.",
"rating": 1,
"recommended": false
},
"top_mentions": [
{ "score_percentage": 100, "name": "Coffee", "count": 64 },
{ "score_percentage": 100, "name": "Price", "count": 56 }
],
"customer_reviews": [
{
"text": "We drink a lot of coffee. This is the 3rd time I ordered Maxwell House from Wal-Mart. You have the best prices, free shipping over $35 and I always get it with in a few days a.",
"rating": 5,
"recommended": true
},
{
"title": "A Really Great Cup Of Coffee",
"text": "What a really great cup of coffee! I never tried this one, until it was on sale a few months ago. Now, after trying it, I won't buy any other. Watch out though, it is a STRONG Coffee, a little goes a long ways.",
"rating": 5,
"recommended": true
}
]
}
}
...
}