Skip to main content

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

EnvironmentURL
Productionhttps://api.getnexor.ai/api/public
Staginghttps://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.

What you can do

  • Create and manage leads — Add leads individually or in bulk, update their information, and store custom metadata
  • Assign workflows — Enroll leads into automated AI-powered outreach workflows with multi-channel cadences
  • Track conversions — Record business outcomes like reservations and closed sales with custom field metadata
  • Manage master workflows — Group related workflows for aggregated conversion tracking
  • Organize campaigns — Tag leads with campaigns for tracking and segmentation

OpenAPI Specification

The full OpenAPI 3.0.3 specification is available at /openapi.json for use with API clients and code generators.