Skip to main content

Base URL

https://api.revyops.com

Authentication

All public API endpoints require a client_id query parameter that identifies your workspace.
GET /public/contacts?client_id=YOUR_CLIENT_ID
Find your client_id in the RevyOps dashboard under Settings → Workspace.
Treat your client_id like a secret. Anyone with this value can read and write data in your workspace.

Versioning

The API has two versions:
VersionBase PathNotes
v1/public/Original endpoints — still supported
v2/public/v2/Recommended — improved filtering and pagination
All new integrations should use v2 endpoints.

Response Format

All responses are JSON. Successful responses return the requested data directly or wrapped in a results array.
{
  "count": 100,
  "next": "https://api.revyops.com/public/v2/contacts?page=2",
  "previous": null,
  "results": [...]
}

Error Format

{
  "detail": "Not found."
}
Common HTTP status codes:
CodeMeaning
200Success
201Created
204Deleted (no content)
400Bad request — check your payload
404Resource not found
500Server error

Pagination

List endpoints support pagination via page and page_size query parameters:
GET /public/v2/contacts?page=2&page_size=50
Default page size is 100. Maximum is 1000.

Rate Limits

The API does not currently enforce rate limits, but avoid sending more than 10 requests per second from a single client to prevent server-side throttling.