This endpoint will retrieve reviews for a specified product from a Walmart reviews page and transform it into usable JSON.
<?php
$url = "https://api.scraperapi.com/structured/walmart/review?api_key=<API_KEY>&product_id=5253396052";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
$response = curl_exec($ch);
curl_close($ch);
print_r($response);
?>
{
"product_name": "HOBIBEAR Boys Sneakers Kids Running Lightweight Breathable Sport Tennis Shoes(Toddles/Little Kids/Big Kids)",
"product_url": "https://www.walmart.com/ip/HOBIBEAR-Boys-Sneakers-Kids-Running-Lightweight-Breathable-Sport-Tennis-Shoes-Toddles-Little-Kids-Big-Kids/1347882796",
"rating": 4.0556,
"review_count": 18,
"reviews": [
{
"title": "good",
"text": "design,price and true size overall like.",
"author": "vi",
"date_published": "3/10/2024",
"rating": 4,
"positive_feedback": 0,
"negative_feedback": 0
},
{
"title": "Didn't last long",
"text": "Did not hold up very long to little boy running/ playing/ activities.",
"author": "firefli529",
"date_published": "5/11/2024",
"rating": 3,
"positive_feedback": 0,
"negative_feedback": 0,
"badges": [
"Verified Purchase",
"Incentivized Review"
]
},
...
}