Google Reviews Results API

To fetch Google product reviews results from SerpApi, create a search with reviews parameter set to 1 or true. (I.e., reviews=1)

API Examples

JSON structure overview

{
  ...
  "reviews_results": [
    {
      "ratings": [
      {
        "stars": "Integer - Rating given",
        "amount": "Integer - Rating amount"
      },
      ...
    ],
    "summary": [
      {
        "title": "String - Summary title",
        "text": "String - Summary text"
      },
      ...
    ],
    "reviews": [
      {
        "position": "Integer - Reviews position",
        "title": "String - Review title",
        "date": "String - Review creation date",
        "rating": "String - Review rating",
        "source": "String - Review origination",
        "content": "String - Review content"
      }
    }
  ],
  ...
}

Results for: iPhone 12

Results for: iPhone 12

JSON Example

{
  ...
  "reviews_results": {
    "ratings": [
      {
        "stars": 1,
        "amount": 7
      },
      {
        "stars": 2,
        "amount": 1
      },
      {
        "stars": 3,
        "amount": 1
      },
      ...
    ],
    "reviews": [
      {
        "position": 1,
        "title": "Let’s talk about this great 5G!! No more 3G support!!",
        "date": "October 24, 2020",
        "rating": 1,
        "source": "Corey · Review provided by vzw.com",
        "content": "I purchased a IPhone 12 Pro to replace my IPhone X, the phone still worked but it’s three years old and figured it was a good time to upgrade. Overall the new one is exactly the same as the X with a better camera. Oh let’s not forget the IPhone 12 pro has the blazing fast 5G we all have to have because our phones just aren’t fast enough! Unfortunately getting the 5G has come at a huge cost the iPhone 12 will not run on 3G so you better check your coverage maps and make sure the areas you need your phone support 5G or LTE. In the future this may not be a big deal but right now I can tell you 3G is still very important in areas of Las Vegas!! I guess if you are planning on staying in the city and don’t plan on doing any exploring outside of the city the lack of 5G will not be a problem for you. I will be taking my IPhone 12 and X out this weekend to do some side by side comparison to see how much service area I have lost. Also at my house I am at 1 Bar in 5G or LTE."
      },
      {
        "position": 2,
        "title": "Beautiful Phone",
        "date": "October 24, 2020",
        "rating": 5,
        "source": "StaceyBink · Review provided by vzw.com",
        "content": "The new iPhone 12 Pro is an absolutely beautiful phone. The design is reminiscent of the older design. The stainless steel is shiny and makes the phone look like a premium phone. I’m coming from a 64 GB iPhone 11 Pro and only upgraded for the larger 128 GB size. This phone feels so much larger in your hand and it is heavier and longer than the 11 Pro. It will take some getting used to holding it comfortably. The camera takes perfect photos but for basic everyday pictures, I don’t notice much difference from the 11 Pro. I can’t comment on 5G because I am not in an area that has 5G. All in all, the iPhone 12 Pro is a beautifully designed phone that is fast, easy to use and has a gorgeous display."
      },
      {
        "position": 3,
        "title": "Awesome iPhone! Get it, you won't be disappointed!",
        "date": "October 25, 2020",
        "rating": 5,
        "source": "AnnLeB · Review provided by vzw.com",
        "content": "This phone is perfect in every way! The design and size is the best! It fits well in your hand and easy to use even without a case! As for 5g, well it's not in my area yet but I did travel to one and 5g kicked in and was good. You also have the option to turn it off and just use LTE as well as battery saving features. Normal battery life will be determined as with any new phone, burns faster at the beginning because you're always on it. Call clarity is the best and haven't dropped any calls yet. Pictures and videos are awesome as well! I may actually keep this one longer than a year!"
      },
      ...
    ],
    ...
  },
  ...
}