Integrations

API Reference

Programmatically create and manage leads in your ConvertIQ account using our REST API.

Authentication

All API requests must include your API key in the X-API-Key header.

Header
X-API-Key: ciq_your_api_key_here
Generate API Key

Go to Settings → API Key to generate your key

Create Lead Endpoint

POSThttps://convertiq.me/api/external/leads/create

Content-Type: application/json

X-API-Key: YOUR_API_KEY

Request Body

{
  "lead": {
    "name": "Jane Doe",
    "email": "jane@example.com",
    "phone": "15551234567",
    "source": "Website Form",
    "industry": "Technology",
    "score": 7,
    "status": "contacted",
    "monthly_revenue": 50000,
    "budget": 10000,
    "description": "Interested in AI calling"
  }
}

Response

{
  "success": true,
  "lead": {
    "id": "uuid",
    "user_id": "uuid",
    "name": "Jane Doe",
    "email": "jane@example.com",
    "source": "Website Form",
    "industry": "Technology",
    "status": "contacted",
    "created_at": "2025-08-13T00:00:00.000Z"
  }
}

cURL Example

curl -X POST https://convertiq.me/api/external/leads/create \
  -H "Content-Type: application/json" \
  -H "X-API-Key: ciq_your_api_key_here" \
  -d '{
    "lead": {
      "name": "Jane Doe",
      "email": "jane@example.com",
      "phone": "15551234567",
      "source": "API",
      "industry": "Technology"
    }
  }'

Field Reference

FieldTypeRequiredDescription
namestringYesLead's full name
emailstringYesLead's email address
phonestringRecommendedE.164 format without + (e.g., 15551234567)
sourcestringYesLead source (e.g., "Website", "API")
industrystringYesIndustry/vertical
scorenumberNoLead quality score (1-10)
statusstringNonew, contacted, qualified, lost
monthly_revenuenumberNoEstimated monthly revenue
budgetnumberNoLead's budget
descriptionstringNoAdditional notes

Important Notes

  • Authentication: Include your API key in the X-API-Key header
  • Required fields: name, email, source, industry
  • Phone format: Use E.164 format without + (e.g., 15551234567)
  • Rate limiting: 100 requests per minute per API key

Ready to integrate?

Generate your API key and start sending leads programmatically.

Get Your API Key