Multi-Platform Reviews
Get reviews from Google, Yelp, and Trustpilot combined in a single call. Includes cross-platform sentiment analysis and rating comparison.
POST
/v1/reviews/multi-platformCost: 6 credits ($0.03)
Rate Limit: Varies by plan
Response: ~4-8 seconds
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| business_name | string | Yes | Business name |
| location | string | Yes | City and state |
| platforms | string[] | No | Platforms to include. Default: ["google", "yelp", "trustpilot"] |
Example Request
curl -X POST https://api.localseodata.com/v1/reviews/multi-platform \
-H "Authorization: Bearer sk_live_your_key" \
-H "Content-Type: application/json" \
-d '{"business_name": "Joe\'s Pizza", "location": "Brooklyn, NY"}'Example Response
JSON
{
"status": "success",
"credits_used": 6,
"platforms": {
"google": { "rating": 4.6, "count": 847, "recent_trend": "stable" },
"yelp": { "rating": 4.0, "count": 234, "recent_trend": "improving" },
"trustpilot": { "rating": null, "count": 0, "recent_trend": null }
},
"combined_rating": 4.4,
"total_reviews": 1081
}Response Fields
| Field | Type | Description |
|---|---|---|
| platforms | object | Per-platform breakdown with rating, count, and trend |
| combined_rating | float | Weighted average across all platforms |
| total_reviews | integer | Total reviews across all platforms |
Notes
- Not all businesses are listed on all platforms — missing platforms return null.
- Use with review-velocity for trend analysis.