100 free credits. No credit card required.Start building
Logo
Google Search logo
100 free credits. No credit card required

Google Search Business Extended Reviews API

Scrape Google Search Business Extended Reviews data with one API call. Returns reviews of a place aggregated from the Google reviews element, not only Google users but reputable third-party sources (TripAdvisor, Yelp, Trustpilot). Each review carries its source domain, full text (with original-language translation), star rating, reviewer stats, and owner replies. Identify the place by keyword, cid, or place_id.

Last updated September 2026Maintained by the SocialCrawl team

Returns reviews on a place's Google listing, including ones from sites like TripAdvisor and Yelp, with each review's source, text, star rating, and owner reply.

Use it when you want a place's reviews from Google and third party sites together, rather than product or app reviews.

Searching 65 platforms in parallel

·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
Google Search API

What can you do with the Business Extended Reviews API?

The Business Extended Reviews endpoint gives you structured Google Search data with computed fields in a single request. No scraping infrastructure to build or maintain.

Example Request

curl -H "x-api-key: YOUR_API_KEY" \
  "https://www.socialcrawl.dev/v1/google/business/extended-reviews?keyword=Irving+Farm+New+York+645+5th+Ave"
import requests

response = requests.get(
    "https://www.socialcrawl.dev/v1/google/business/extended-reviews",
    params={
    'keyword': 'Irving Farm New York 645 5th Ave',
    },
    headers={"x-api-key": "YOUR_API_KEY"},
)

data = response.json()
const response = await fetch(
  "https://www.socialcrawl.dev/v1/google/business/extended-reviews?keyword=Irving+Farm+New+York+645+5th+Ave",
  {
    headers: { "x-api-key": "YOUR_API_KEY" },
  },
);

const data = await response.json();

Parameters

ParameterRequiredDescription
keywordNoBusiness name + address. Use cid/place_id for an exact match.
cidNoGoogle customer id (cid) of the place.
place_idNoGoogle place_id of the place.
location_nameNoGeographic context as 'City,Region,Country'.
language_nameNoResult language (default 'English').
depthNoNumber of reviews to return (default 20, step 20, max 1000).
Example Response

What does the Google Search Business Extended Reviews API return?

Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.

Example response
{
  "success": true,
  "platform": "google",
  "endpoint": "/v1/google/business/extended-reviews",
  "data": {
    "items": [
      {
        "review": {
          "id": "Ci9DQUlRQUNvZENodHljRjlvT210aVMxWm5aRkZFWVV0M2JYa3pPVU5rVVdJdFJrRRAB",
          "entity_id": "10008150968882388764",
          "url": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sCi9DQUlRQUNvZENodHljRjlvT210aVMxWm5aRkZFWVV0M2JYa3pPVU5rVVdJdFJrRRAB!2m1!1s0x0:0x8ae41847deb75f1c!3m1!1s2@1:CAIQACodChtycF9oOmtiS1ZnZFFEYUt3bXkzOUNkUWItRkE%7C%7C?hl=en-US",
          "title": null,
          "text": "After leaving St Patrick’s, I walked over to the arcade of Olympic Tower. Inside is very nice. Tartinery cafe looks very inviting near the 52nd entrance. Next is Irving Farm Coffee shop with lots of seating. Small Americano was delicious and well made. There are free bathrooms. And a singer in the open space playing soft easy listening music. Fairly busy so it must be a popular spot. I will definitely come again.",
          "rating": {
            "value": 4,
            "max": 5
          },
          "author": {
            "name": "THE EXPLORER",
            "avatar_url": "https://lh3.googleusercontent.com/a-/ALV-UjVFxUJOeouoisxBvyH7erWQceOs8zWrOC_dM8rsKZXHASSzav7VVw=s64-c-rp-mo-ba12-br100",
            "url": "https://www.google.com/maps/contrib/113768639315364178628/reviews?hl=en-US",
            "location": null,
            "reviews_count": 1076
          },
          "helpful_votes": null,
          "verified": null,
          "source": "www.google.com",
          "language": null,
          "original_language": null,
          "translated": false,
          "images": [
            "https://lh3.googleusercontent.com/grass-cs/ACvplmO12Kh3vQYlOJXp4gQwjBcAsCptZYbdOGD9ydIF81B7xX3v5LLCYA_eN5kQ2iE-HuQKpENHYEp3YWa384wl1T3PUztQeH9LbKeAXS_6wh4G6q6nnd8BIB0jj7ITxFdW5AzWiEYmGrbHOSe_=k-no",
            "https://lh3.googleusercontent.com/grass-cs/ACvplmMVv0wXY3ks49TX3bSG943kYkPj0lHX6V4TT9dX_KyUpUSAkcZb1KT3Ciw8jgrSNMo-zyP0O4Qjw7wrL3GpNla_bMMbtnfOdSioXrLW9SHBw0wEFWsV8fNtP7FiJuOmZ0pxUhtvrkvL0KQm=k-no"
          ],
          "responses": null,
          "published_at": "2025-07-31 19:55:19 +00:00"
        }
      },
      {
        "review": {
          "id": "ChdDSUhNMG9nS0VJQ0FnSUNqN0s3M3BRRRAB",
          "entity_id": "10008150968882388764",
          "url": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChdDSUhNMG9nS0VJQ0FnSUNqN0s3M3BRRRAB!2m1!1s0x0:0x8ae41847deb75f1c!3m1!1s2@1:CIHM0ogKEICAgICj7K73pQE%7C%7C?hl=en-US",
          "title": null,
          "text": "Nice place to get away from the hustle and bustle of 5th av.\n\nBanana and Chocolate scone 👌🏻\n\nCoffee 👍🏻 Didn’t ask about beans and choice. So probably just house. 6 kinds available to buy.\n\nEarl Grey ✌🏻- choice of teas and even asked if they wanted milk!! 😉\n\nService - 2 guys. Just did what they were paid to do.\n\nNot many baked goods by 2pm. But still a few. Small choice of cold drinks.\n\nAmbience was nice with water feature and wee bloke in the corner singing and playing keyboard. Nice and bright!!",
          "rating": {
            "value": 5,
            "max": 5
          },
          "author": {
            "name": "Peter Scott",
            "avatar_url": "https://lh3.googleusercontent.com/a-/ALV-UjWuj_b_2V4bgVdqMvB4ec3VmfsBdo5yoZTNX5Ofo4xMvpDtAc9p=s64-c-rp-mo-ba12-br100",
            "url": "https://www.google.com/maps/contrib/105029981788202476288/reviews?hl=en-US",
            "location": null,
            "reviews_count": 45
          },
          "helpful_votes": null,
          "verified": null,
          "source": "www.google.com",
          "language": null,
          "original_language": null,
          "translated": false,
          "images": [
            "https://lh3.googleusercontent.com/grass-cs/ACvplmO2GTV52LUsbzql4pB644BOcuqx0shNdA0bQe5NAsQiKoJjBaVknc96mdllm4-p3nhCgPDar0OnGTKbtp-oCnB41hYDJi0iFReNk2MTRrirEQBJWKmWY5KKLfyhnWRR4k4snVHS=k-no",
            "https://lh3.googleusercontent.com/grass-cs/ACvplmMG4GCCyAk5a8mZgcQcsBfPXx2SBJvy8TZqJmbiV5gjv0BJMaT9kdM0Q7DZh47zJM8z8lewxMremSEcf5ZCnu5iUkNbg9K44iQn1-P4X08jWHyH5gTSirYh5m-qbs8OamG8rpZW=k-no"
          ],
          "responses": null,
          "published_at": "2024-04-18 17:52:20 +00:00"
        }
      }
    ],
    "total": 16,
    "dropped": 0
  },
  "credits_used": 5,
  "credits_remaining": 9999,
  "request_id": "req_example000000",
  "cached": false,
  "pagination": {
    "next_cursor": null,
    "has_more": false,
    "page_size": 16
  }
}

Live sample illustrating the unified response shape. Field values reflect the record you query.

API Details

How does the Google Search Business Extended Reviews API work?

Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.

Method

GET

Response

JSON

Why SocialCrawl

Why use SocialCrawl for Google Search Business Extended Reviews data?

We handle the complexity of Google Search data extraction so you can focus on building. Unified schema, AI enrichment, and zero platform logic in your code.

Developer First

How do you scrape social media data in seconds?

The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 65 platforms covering 10B+ monthly active users.

One schema, every platform

Query 65 platforms with identical response structures. Write your integration once.

Computed fields, not just scraped

When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.

See your data before you code

Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.

import requests

response = requests.get(
    'https://www.socialcrawl.dev/v1/tiktok/profile',
    params={'handle': 'charlidamelio'},
    headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json()
[ .JSON ]
{
  "success": true,
  "platform": "tiktok",
  "data": {
    "author": {
      "username": "charlidamelio",
      "followers": 152400000
    },
    "engagement": {
      "likes": 12400000000,
      "engagement_rate": 0.087
    },
    "metadata": {
      "language": "en",
      "content_category": "lifestyle"
    }
  }
}
+ 65 platforms
FAQ

Have a question? We got answers

Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.

Contact us
How do I get Google reviews with an API?
Send a GET request to /v1/google/business/extended-reviews for a place. SocialCrawl returns reviews aggregated from the Google reviews element, not only Google users but reputable third-party sources like TripAdvisor, Yelp, and Trustpilot, each tagged with its source domain.
Which review sources does it include?
Reviews come from Google itself plus reputable third-party sites (TripAdvisor, Yelp, Trustpilot, and others) that Google surfaces on the place. Every review is tagged with its source domain, so you can filter by platform or weight Google reviews differently from aggregator reviews.
Does each review include the full text and a translation?
Yes. Each review returns its full text plus an original-language translation, the star rating, reviewer stats, and any owner reply. That lets you read non-English reviews in one language while keeping the original for sentiment work or display alongside the translated copy.
Can I see the business owner's replies?
Yes. When a business has responded to a review, the owner reply is included on the review record alongside the reviewer's text and rating. This is useful for tracking how a brand handles complaints or for surfacing engaged listings in a directory.
How much does the Google Reviews API cost?
Each request costs 5 credits, powered by DataForSEO, because it aggregates reviews across Google and multiple third-party sources. New accounts get 100 free credits with no credit card required, enough for 20 review pulls before you pay a cent.

Ask AI about SocialCrawl

Ready to scrape Google Search Business Extended Reviews data?

Get your API key and start pulling Google Search data in under 60 seconds.

Start for free

🤖 AI agent or LLM? Read this page as markdown