Reputation Audit
Cross-platform reputation analysis combining reviews from Google, Yelp, and Trustpilot with sentiment analysis and response rate scoring.
POST
/v1/audit/reputationCost: 30 credits ($0.15)
Rate Limit: Varies by plan
Response: ~6-12 seconds
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| business_name | string | Yes | Business name |
| location | string | Yes | City and state |
Example Request
curl -X POST https://api.localseodata.com/v1/audit/reputation \
-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": 30,
"reputation_score": 82,
"google": { "rating": 4.6, "reviews": 847, "reply_rate": 0.60 },
"yelp": { "rating": 4.0, "reviews": 234, "reply_rate": 0.25 },
"sentiment": {
"positive_themes": ["fast delivery", "great crust", "friendly staff"],
"negative_themes": ["long weekend wait", "small seating"]
},
"recommendations": [
"Increase Google review reply rate from 60% to 90%+",
"Address 'long wait on weekends' — mentioned in 18% of negative reviews"
]
}Response Fields
| Field | Type | Description |
|---|---|---|
| reputation_score | integer | Overall reputation score (0-100) |
| sentiment | object | Positive and negative theme analysis |
| recommendations | string[] | Actionable reputation improvements |
Notes
- Combines data from multi-platform reviews, sentiment analysis, and reply rate tracking.
- Run monthly to track reputation progress.