ReviewOrigin
</> 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 dashboard
2
Include it as a Bearer token in all requests
3
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 businessAuth
POST/v1/invitesSend a review invite to a customerAuth
POST/v1/repliesPost an AI-generated or custom replyAuth
GET/v1/analytics/sentimentGet sentiment trends over timeAuth
GET/v1/competitorsGet competitor reputation dataAuth
POST/v1/automationsCreate or trigger an automationAuth
GET/v1/businessesList all businesses in your accountAuth
GET/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.