Skip to main content
API Reference

Leads API

Capture, score, and manage leads through automated qualification workflows.

Endpoints

GET/leadsList all leads
POST/leadsCreate a new lead
GET/leads/{id}Get lead details
PUT/leads/{id}Update lead
POST/leads/{id}/convertConvert lead to contact

Create Lead

Request
POST /crm/v1/leads
Content-Type: application/json

{
  "first_name": "John",
  "last_name": "Smith",
  "email": "john.smith@company.com",
  "company": "Acme Corp",
  "phone": "+1-555-123-4567",
  "source": "website_form",
  "custom_fields": {
    "industry": "Technology",
    "company_size": "50-100"
  }
}

Next Steps