Loading...
Loading...
Updated April 10, 2026
To use the Revnator API, you'll need an API key. API keys are scoped to your workspace and can be generated from your account settings.
All API requests are made to https://api.revnator.com/v1. Here's a simple example to fetch your contacts:
1curl -X GET https://api.revnator.com/v1/contacts \2 -H "Authorization: Bearer YOUR_API_KEY" \3 -H "Content-Type: application/json"
All requests must include your API key in the Authorization header using the Bearer token scheme.
1Authorization: Bearer rev_live_a1b2c3d4e5f6...
Treat your API key like a password. Never expose it in client-side code, public repositories, or shared documents.
If your API key is exposed, rotate it immediately from Settings → API Keys. Old keys will continue to work for 24 hours after rotation to prevent service disruption.
You can rotate your API key at any time without service interruption. Generated tokens have a 24-hour grace period where both old and new keys work simultaneously.