Walmart Reviews Results API

When SerpApi encounters reviews, we add them to our JSON output as the reviews_results object.

API Examples

JSON structure overview

{
  ...
  "reviews_results": {
    "ratings": [
      {
        "stars": "Integer",
        "count": "Integer"
      },
    ],
    "reviews": {
      "rating": "Float",
      "count": "Float",
      "top_positive": {
        "title": "String",
        "text": "String",
        "rating": "Float",
        "positive_feedback": "Float",
        "negative_feedback": "Float",
        "review_submission_time": "String",
        "user_nickname": "String",
        "customer_type": "Array",
      },
      "top_negative": {
        "title": "String",
        "text": "String",
        "rating": "Float",
        "positive_feedback": "Float",
        "negative_feedback": "Float",
        "review_submission_time": "String",
        "user_nickname": "String",
        "customer_type": "Array",
      },
      "customer_reviews": [
        {
          "title": "String",
          "text": "String",
          "rating": "Float",
          "review_submission_time": "String",
          "user_nickname": "String",
          "customer_type": "Array",
        }
      ]
    }
  }
  ...
}

Product reviews overview

Product reviews overview

JSON Example

{
  ...
  "reviews_results": {
    "ratings": [
      {
        "stars": 1,
        "count": 429
      },
      {
        "stars": 2,
        "count": 53
      },
      {
        "stars": 3,
        "count": 80
      },
      {
        "stars": 4,
        "count": 265
      },
      {
        "stars": 5,
        "count": 5152
      }
    ],
    "reviews": {
      "rating": 4.6,
      "count": 5980,
      "top_positive": {
        "title": "Yup",
        "text": "Noise cancelling is awesome!  Battery life for being so tiny is great at 5  hours (depending on if using noise cancelling or not).  They fit comfortable and have great audio quality.  \n\nAnd this coming from a guy who like Apple phones and air pods but just can't justify the cost of a MacBook for a laptop.",
        "rating": 5,
        "positive_feedback": 4,
        "negative_feedback": 0,
        "review_submission_time": "2/15/2024",
        "user_nickname": "CJ",
        "customer_type": [
          "VerifiedPurchaser"
        ]
      },
      "top_negative": {
        "title": "Fake just as the reviews say - DO  NOT PURCHASE",
        "text": "The item is fake, the case/ packing box serial number does not match the AirPod serial number. \n\nMy original AirPod that I got from the Apple Store say made in Vietnam. \n\nThe AirPods I purchase from this vendor says made in China. \n\nBefore the item was shipped, I put in a request to cancel this order before it was shipped and it was denied. \n\nI'm not purchasing from Walmart ever again. This has to be the third incident I have ran into with an online order. \n\nThe AirPod on the left is from Walmart. The AirPod on the right is from Apple. \nPlease do not purchase!!",
        "rating": 1,
        "positive_feedback": 9,
        "negative_feedback": 2,
        "review_submission_time": "5/21/2024",
        "user_nickname": "Dan",
        "customer_type": [
          "VerifiedPurchaser"
        ]
      },
      "top_mentions": [
        {
          "name": "Price",
          "count": 262
        },
        {
          "name": "Quality",
          "count": 165
        },
        {
          "name": "Noise Level",
          "count": 132
        },
        ...
      ],
      "customer_reviews": [
        {
          "title": "Yup",
          "text": "Noise cancelling is awesome!  Battery life for being so tiny is great at 5  hours (depending on if using noise cancelling or not).  They fit comfortable and have great audio quality.  \n\nAnd this coming from a guy who like Apple phones and air pods but just can't justify the cost of a MacBook for a laptop.",
          "rating": 5,
          "review_submission_time": "2/15/2024",
          "user_nickname": "CJ",
          "customer_type": [
            "VerifiedPurchaser"
          ]
        },
        {
          "title": "The hype is real - love them",
          "text": "The sound is incredible. I had to remove them to make sure I wasn't listening to the tv. I'd also like to mention that if you're wondering if you can run in them comfortably the answer is yes. They don't get loose or bothersome at all. I've stopped wearing my Shokz because my quit pods are my new fave.",
          "rating": 5,
          "review_submission_time": "4/7/2024",
          "user_nickname": "Myra",
          "customer_type": [
            "VerifiedPurchaser"
          ]
        },
        {
          "title": "Fake just as the reviews say - DO  NOT PURCHASE",
          "text": "The item is fake, the case/ packing box serial number does not match the AirPod serial number. \n\nMy original AirPod that I got from the Apple Store say made in Vietnam. \n\nThe AirPods I purchase from this vendor says made in China. \n\nBefore the item was shipped, I put in a request to cancel this order before it was shipped and it was denied. \n\nI'm not purchasing from Walmart ever again. This has to be the third incident I have ran into with an online order. \n\nThe AirPod on the left is from Walmart. The AirPod on the right is from Apple. \nPlease do not purchase!!",
          "rating": 1,
          "review_submission_time": "5/21/2024",
          "user_nickname": "Dan",
          "customer_type": [
            "VerifiedPurchaser"
          ]
        },
        ...
      ]
  ...
}