API Keys
Let external tools read & write your CRM data over a REST API. Keys are scoped to your business.
Copy this key now — it won't be shown again:
Your keys
Quick start
Authenticate with Authorization: Bearer YOUR_KEY (or X-API-Key). Base URL: /api/v1
curl -H "Authorization: Bearer ak_xxx" /api/v1/leads
curl -X POST -H "Authorization: Bearer ak_xxx" -H "Content-Type: application/json" \
-d '{"first_name":"Jane","email":"jane@example.com","status":"New"}' \
/api/v1/leads
Objects: leads, contacts, companies, deals, quotes, invoices, jobs, tasks, activities, notes, products. Endpoints: GET /:object, GET /:object/:id, POST /:object, PATCH /:object/:id, DELETE /:object/:id.