DocsGetting StartedQuickstart
Quickstart
Go from zero to your first captured lead in under five minutes. This guide assumes you have an Awenox workspace and an active API key. If you don't, create one in Settings → API keys.
1. Capture a lead
Send a single POST request to /v1/leads. All fields except name are optional, but providing a phone or email enables follow-ups.
shell
curl https://api.awenox.com/v1/leads \
-H "Authorization: Bearer awx_live_..." \
-H "Content-Type: application/json" \
-d '{
"name": "Jordan Pike",
"email": "jordan@acme.co",
"phone": "+15125550199",
"source":"website"
}'2. Trigger a follow-up sequence
Every lead created via the API can attach a sequence by passing sequence_id. Awenox handles channel selection, throttling, and quiet hours automatically.
3. Subscribe to events
Configure a webhook endpoint to receive lead.created, lead.contacted, and lead.won in real time. All events are signed with HMAC-SHA256.
Authentication
Bearer tokens, scopes, key rotation, IP allow-lists.
Webhooks
Delivery guarantees, retries, signature verification.
Pagination
Cursor pagination, ordering, and consistent reads.
Rate limits
1,000 req/min per workspace. Burst up to 4,000.
Need a hand?
Our team replies to dev support in under 2 business hours.