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-platform
Cost: 6 credits ($0.03)
Rate Limit: Varies by plan
Response: ~4-8 seconds

Parameters

ParameterTypeRequiredDescription
business_namestringYesBusiness name
locationstringYesCity and state
platformsstring[]NoPlatforms 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

FieldTypeDescription
platformsobjectPer-platform breakdown with rating, count, and trend
combined_ratingfloatWeighted average across all platforms
total_reviewsintegerTotal reviews across all platforms

Notes

  • Not all businesses are listed on all platforms — missing platforms return null.
  • Use with review-velocity for trend analysis.