Build on Reputic
Integrate review data, AI analysis, and reputation workflows into your products with our REST API and MCP server. Built for developers who want to move fast without compromising security.
Two Ways to Integrate
Choose the integration style that fits your workflow — a classic REST API or a modern AI-native MCP connection.
REST API
A standard JSON REST API with full authentication support, paginated responses, and predictable resource paths — works with any language or framework.
- OAuth 2.1 authentication with scoped permissions
- Generate AI reply suggestions on demand
- Interactive OpenAPI documentation
MCP / AI Integration
Connect Reputic directly to AI assistants like Claude via the Model Context Protocol. Ask questions about your reviews in plain language — no API calls required.
- Works with Claude Desktop, Cursor, and other MCP clients
- Query reviews and summaries in natural language
- Configure once with a simple JSON snippet
Up and Running in Minutes
A single API call fetches your latest reviews. Or drop a JSON config block into your AI client and start chatting with your data.
REST API — Fetch reviews
curl -X GET \
https://platform.reputic.app/api/v1/reviews \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Accept: application/json" \
-G \
--data-urlencode "per_page=20" \
--data-urlencode "sort=created_at" \
--data-urlencode "direction=desc"
# Response
{
"data": [
{
"id": "rv_01j...",
"platform": "google",
"rating": 5,
"body": "Excellent service...",
"sentiment": "positive",
"created_at": "2025-03-28T10:14:00Z"
}
],
"meta": { "total": 348, "per_page": 20 }
}
MCP — Claude Desktop config
{
"mcpServers": {
"reputic": {
"url": "https://platform.reputic.app/mcp"
}
}
}
// Then ask Claude:
// "Summarise my negative reviews from
// the last 30 days and suggest replies"
What You Can Build
From simple alerting to full reputation automation — the API gives you the building blocks.
Review Monitoring
Poll for new reviews and push real-time Slack or email alerts when a negative review lands — before it escalates.
AI Reply Generation
Fetch AI-generated reply suggestions per review and surface them in your CRM or helpdesk so staff can approve with one click.
Workflow Automation
Trigger Reputic imports from your own pipelines, sync data to your data warehouse, or chain reviews into a Make or Zapier workflow.
Custom Dashboards
Pull aggregated rating trends, platform breakdowns, and sentiment scores into your own BI tool or executive reporting dashboard.
Automated Reports
Schedule weekly or monthly review summaries delivered via email, PDF, or a custom Slack digest — fully automated from the API.
Competitor Intelligence
Compare your rating trends against tracked competitors, export the data, and feed it into competitive analysis or sales enablement tools.
Secure by Design
Every API request is authenticated, rate-limited, and scoped to your account. Your review data never leaks to other tenants.
OAuth 2.1 Apps
Create OAuth apps from your profile to get client credentials. Complete the authorization flow to obtain scoped access tokens.
Scoped Permissions
Request only the scopes your app needs. Users approve access through a branded consent screen with granular permission control.
Rate Limits
60 reads/min · 30 writes/min · 10 AI operations/min. Designed for reliable integration without throttling surprises.
Developer FAQ
Common questions from developers integrating with Reputic.
Yes. Reputic provides a full REST API that gives you programmatic access to your review data, sentiment analysis, AI reply suggestions, and more. Authentication uses OAuth 2.1. Full documentation is available at platform.reputic.app/docs/api.
MCP (Model Context Protocol) is an open standard that lets AI assistants like Claude connect directly to external services. With Reputic's MCP server, AI tools can query your reviews, run sentiment analysis, and generate replies without you writing any API code. You configure it once with a small JSON snippet in your AI client and the AI handles the rest.
You can build custom dashboards, automated reporting workflows, CRM integrations, Slack or email alerting systems, competitor intelligence tools, and AI-powered reply workflows — anything that benefits from programmatic access to your review data. See the "What You Can Build" section above for common examples.
Read operations allow 60 requests per minute, write operations allow 30 requests per minute, and AI operations (like reply generation) allow 10 requests per minute. These limits apply to all accounts including free trials.
Yes. REST API access and MCP integration are included with every Reputic subscription, including during the 14-day free trial. No additional cost or separate plan required.
Ready to Start Building?
Start your free trial, grab your API token from settings, and make your first call in minutes.