Skip to main content
Reviews is the primitive for reputation analysis across major review ecosystems. Use it to monitor customer sentiment, compare competitors, track rating changes, and correlate review trends with social engagement.
Reviews is a use-case view over Business Data — there is no separate /v1/reviews route. Every call below maps to a /v1/business/... endpoint (Google/Trustpilot/TripAdvisor reviews + social engagement). There is no dedicated SDK sub-client; use the CLI (naive business ...) or the Business Data REST/MCP surface.

CLI First

Endpoints

PlatformEndpointDescriptionSpeedCost
Google My Businessmy-business-infoBusiness profile details + rating contextLive20 credits
Google ReviewsreviewsBusiness review text and ratingsStandard (async)20 credits
Google Q&Aquestions-and-answersBusiness profile Q&A contentLive20 credits
TrustpilotsearchDiscover businesses on TrustpilotStandard (async)20 credits
TrustpilotreviewsRetrieve domain reviewsStandard (async)20 credits
TripAdvisorreviewsRetrieve listing reviewsStandard (async)20 credits
Social Mediafacebook / pinterest / redditURL-level engagement metricsLive10 credits

Google Reputation Endpoints

EndpointRouteMethod
my-business-infoPOST /v1/business/google/my-business-infoLive
reviewsPOST /v1/business/google/reviews/taskStandard (async)
questions-and-answersPOST /v1/business/google/questions-and-answersLive

Parameters

ParamTypeRequiredDefaultDescription
keywordstringYesBusiness query/name
location_codenumberNoLocation code
language_codestringNoLanguage code
depthnumberNo100Review depth (reviews)
sort_bystringNomost_relevantSort mode (reviews)

Trustpilot + TripAdvisor (Async)

Both providers use submit/check/retrieve task flow:
  1. Submit POST /v1/business/{platform}/{endpoint}/task
  2. Check GET /v1/business/{platform}/{endpoint}/tasks-ready
  3. Retrieve GET /v1/business/{platform}/{endpoint}/task/:id

Social Engagement Endpoints (Live)

PlatformRoutePurpose
FacebookPOST /v1/business/social/facebookLikes, shares, comments for target URLs
PinterestPOST /v1/business/social/pinterestPin counts for target URLs
RedditPOST /v1/business/social/redditSubmission metrics for target URLs
Request body for all platforms:

Typical Workflow