</> Developer API
Build anything on ReviewOrigin
A powerful, well-documented REST API to programmatically manage reviews, send invites, access AI insights, and automate anything.
Base URL:https://api.revieworigin.com/v1
Quick Start
1
Generate an API key from your dashboard2
Include it as a Bearer token in all requests3
Send your first review invite in 2 lines of code# Send a review invite
curl -X POST \
https://api.revieworigin.com/v1/invites \
-H "Authorization: Bearer ro_live_xxx" \
-H "Content-Type: application/json" \
-d '{"customer_email":"jane@co.com","platform":"google","channel":"email"}'
# Response
{
"id": "inv_01hx...",
"status": "sent",
"scheduled_at": "2025-05-12T14:30:00Z"
}
API Endpoints
GET
/v1/reviewsList all reviews for a businessAuthPOST
/v1/invitesSend a review invite to a customerAuthPOST
/v1/repliesPost an AI-generated or custom replyAuthGET
/v1/analytics/sentimentGet sentiment trends over timeAuthGET
/v1/competitorsGet competitor reputation dataAuthPOST
/v1/automationsCreate or trigger an automationAuthGET
/v1/businessesList all businesses in your accountAuthGET
/v1/insights/aiRetrieve AI-generated business insightsAuth🔐
API Key Auth
Simple API key authentication. Generate scoped keys with specific permissions.
🪝
Webhooks
Real-time event notifications for new reviews, replies, sentiment changes, and more.
🔁
Rate Limiting
1,000 requests/minute on Growth, 10,000 on Pro. Burst limits and retry headers included.