Multi-Platform Reviews API
Reputation is no longer one number.
A decade ago, your reputation was your Google rating. Today it lives across Google, Trustpilot, Yelp, BBB, industry-specific platforms. Each has its own API, its own rate limits, its own structure. Your competitors use subscription platforms like Birdeye and Podium at $200–400/month per location to watch all of them. We aggregated them into one endpoint. One POST call returns ratings and counts across Google and Trustpilot. Your agent does the comparative analysis.
POST /v1/reviews/multi-platform · 6 credits per business
Local pack rank
Up from #3 last week
Review velocity
Down 20% MoM
NAP consistency
3 mismatches fixed
Profile complete
Missing 3 categories
Top fix: add 3 missing service categories to profile.
These prompts are the new competitive intelligence workflow.
Connect Local SEO Data as an MCP server once (60 seconds, below). Then your agent pulls cross-platform reputation across your entire competitive set. Replace bracketed business names with your own.
Pull Google and Trustpilot ratings for [my business] and my top 3 competitors. Show me where each ranks strongest and where they have vulnerability.
Check Google and Trustpilot ratings for all 12 of my client locations. Flag any location where Trustpilot rating is more than 0.5 stars lower than Google — that suggests platform-specific dissatisfaction.
Before I pitch [prospect business], pull their Google and Trustpilot ratings. What's the gap between platforms? Are they strong on one and weak on another?
Weekly check: Google and Trustpilot ratings for [my business]. If either drops more than 0.2 points, alert me and pull recent negative reviews.
What you get back
Live response from POST /v1/reviews/multi-platform for a sample business across Google and Trustpilot.
{
"status": "success",
"credits_used": 6,
"business_name": "Joe's Pizza",
"location": "Brooklyn, NY",
"platforms": {
"google": {
"rating": 4.6,
"count": 847,
"recent_trend": "stable"
},
"trustpilot": {
"rating": 4.3,
"count": 156,
"recent_trend": "rising"
}
},
"combined_rating": 4.5,
"total_reviews": 1003,
"platform_gap": 0.3,
"sentiment_by_platform": {
"google": { "positive": 0.78, "neutral": 0.15, "negative": 0.07 },
"trustpilot": { "positive": 0.81, "neutral": 0.12, "negative": 0.07 }
}
}Everything you need for cross-platform reputation intelligence
Rating, count, recent trend
Google and Trustpilot separately. See where your reputation is strong and where it's weak.
Weighted average across platforms
One number that reflects your actual multi-surface standing, not just Google.
Where you rank differently
Trustpilot significantly lower than Google? That's a distinct problem with a distinct solution.
Positive, neutral, negative across each
AI-classified sentiment shows which platform has happier or more critical reviews.
What competitive intelligence teams ship with this
Pre-pitch competitive intelligence
Before you call a prospect, pull their Google and Trustpilot ratings. Know their reputation vulnerabilities. Walk in with a diagnosis instead of a hope.
→ For consultantsClient portfolio reputation tracking
Agencies with 20–100 client locations run weekly multi-platform sweeps. Flag drops, surface sentiment shifts. One agent call covers your entire book.
→ For agenciesCompetitive win/loss analysis
Your prospect chose a competitor. Pull both your ratings and theirs across Google and Trustpilot. Understand the reputation gap that cost you the deal.
→ Competitor Gap APIReputation recovery monitoring
A client had a crisis. Track their recovery across platforms weekly. Google recovers faster than Trustpilot. Know which surface still needs work.
→ Review Velocity APIWhy not use Birdeye, Podium, or Reputation.com directly?
Those platforms aggregate 5–10 sources and offer strong dashboards for humans. But for AI agents doing competitive intelligence at scale, they're subscription tools with rate limits and no MCP support. Here's how the economics and integration shape up.
| Approach | Platforms covered | Setup | Cost | AI-agent ready |
|---|---|---|---|---|
| Birdeye (multi-location) | 5–10 platforms | Dashboard login, UI config | $200–400/mo per location | API exists, no MCP |
| Podium (SMS-first) | 4–6 platforms | Dashboard login, SMS setup | $150–300/mo flat | REST API only, rate-limited |
| ReviewTrackers | 120+ sources | Dashboard UI | $75–500/mo by tier | No agent integration |
| Reputation.com (enterprise) | 8–12 platforms | Sales call + onboarding | Custom pricing, likely $500+/mo | Not agent-first |
| Google Places API (free) | Google only | OAuth + 2–4 week approval | Free (gated) | No MCP, owned listings only |
| Custom scraping + DIY | Depends on your build | Engineering build + maintain | Proxy, CAPTCHA solving costs | Breaks regularly |
| Local SEO Data Multi-Platform API | Google, Trustpilot (expanding) | API key + 1-line MCP config | $0.03 per call, $5 starts you | Native MCP, agent-first |
Use it from your agent
Two integration surfaces: MCP for clients that speak MCP, REST API for everything else.
Direct MCP integration
Drop-in support in Claude Desktop, OpenClaw, Hermes Agent, and any MCP-aware client.
Add to your client's MCP config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"localseodata": {
"url": "https://mcp.localseodata.com",
"headers": {
"Authorization": "Bearer sk_live_..."
}
}
}
}REST API
For Perplexity Computer, ChatGPT Custom GPTs, custom agents, and any platform that calls REST endpoints directly.
Base URL:
api.localseodata.comSee the docs for endpoint reference and auth.
Your first call in three lines
One call, three syntaxes. The endpoint takes a business name and location. We resolve it to the canonical business across Google and Trustpilot and return ratings from both in one response.
curl -X POST https://api.localseodata.com/v1/reviews/multi-platform \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"business_name": "Joe'''s Pizza",
"location": "Brooklyn, NY"
}'$0.03 per call
Pay-as-you-go starts at $5. Monthly plans from $19. Funds never expire. No seat fees, ever.
Common questions
What is the Multi-Platform Reviews API?+
POST /v1/reviews/multi-platform.Which platforms are covered?+
How does this differ from the Google Reviews API?+
Can I get individual review text or just aggregate ratings?+
Where does the data come from?+
How fresh is the data?+
How does this compare to Birdeye, Podium, and ReviewTrackers?+
Can my AI agent use this directly?+
claude_desktop_config.json (or OpenClaw, Hermes Agent, or any MCP-aware client) and your agent calls it from any prompt. REST: Any agent that can make HTTPS calls — ChatGPT Custom GPTs, Perplexity Computer, custom Python agents — hits api.localseodata.com directly with the Bearer token. You don't write integration code. You write the prompt.What does it cost versus subscription platforms?+
Can I compare my business to competitors?+
What's the platform gap and why does it matter?+
Does this work for multi-location businesses?+
What changed in 2026 that made this category exist?+
Often used in the same agent prompt
Google Reviews API
Full review history, author, text, owner replies.
POST /v1/reviews/velocityReview Velocity API
Rating trend, reply rate, sentiment change over time.
POST /v1/audit/reputationReputation Audit API
Composite: multi-platform reviews + sentiment + trends.
POST /v1/business/profileGoogle Business Profile API
NAP, hours, categories, photos, attributes.
Build your first competitive reputation audit in 60 seconds.
50 free credits on signup. Your first multi-platform lookup happens through Claude, not curl.