Getting Started
Nexor is an AI Agents platform that enables you to programmatically create leads and manage automated workflows powered by AI agents for calls, messaging, and multi-channel outreach.
Base URLs
| Environment | URL |
|---|---|
| Production | https://api.getnexor.ai/api/public |
| Staging | https://staging-api.getnexor.ai/api/public |
Current API version: 1.5.0
Quick Start
1. Get your API key
Generate an API key from the Nexor dashboard. Keys are prefixed with nxr_live_.
2. List your workflows
curl https://api.getnexor.ai/api/public/workflows \
-H "X-API-Key: nxr_live_your_api_key"
3. Create a lead
curl -X POST https://api.getnexor.ai/api/public/leads \
-H "Content-Type: application/json" \
-H "X-API-Key: nxr_live_your_api_key" \
-d '{
"first_name": "John",
"last_name": "Doe",
"email": "john@example.com",
"phone": "+1234567890",
"workflow_id": "your-workflow-uuid"
}'
The lead will automatically be enrolled in the workflow's cadence sequence and start receiving AI-powered outreach.