We are building a standalone business directory (WordPress-based) and need a lightweight way to retrieve essential reputation metrics without fetching full review data.
For this use case, the existing reviews.index endpoint is too heavy, since we only require aggregated metrics, not individual reviews.
A new endpoint such as:
GET /location/{id}/stats This endpoint should return the core reputation metrics for a given location, allowing daily server-side syncs via cron job.
This is critical for integrating EMR data into external systems without overfetching.
We only need three aggregated values:
total_review_count
Total number of reviews across all connected sources.
average_rating
Combined rating (e.g. 4.7).
total_sources
Number of connected platforms (e.g. 2 for Google + Facebook).
{ "location_id": "UUID-EXAMPLE-123", "total_review_count": 128, "average_rating": 4.7, "total_sources": 2 } Enables efficient server-side synchronization for external business directory listings
Reduces load by avoiding full review fetching
Ideal for use cases where only summary reputation metrics are required
Improves developer experience when integrating EMR with third-party systems
We would love to see this added, as it would make data syncing significantly easier and more resource-friendly.
Please authenticate to join the conversation.
In Progress
π‘ Feature Request
General
3 months ago

Mariah
Get notified by email when there are changes.
In Progress
π‘ Feature Request
General
3 months ago

Mariah
Get notified by email when there are changes.