Skip to main content

Get Your API Key

1

Sign Up

Create your account at lupitor.acrely.ai
2

Navigate to API Keys

Go to your company’s API Keys page in the dashboard
3

Create New Key

Click “Create API Key” and choose the appropriate scope:
  • Read: View leads and conversations
  • Write: Create and manage leads (includes read access)
4

Save Your Key

Copy your API key immediately - it won’t be shown again!
Store your API key securely. Never commit it to version control or share it publicly.

Make Your First Request

Let’s create a lead for your campaign:
curl -X POST https://lupitor.acrely.ai/api/v1/leads \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "campaignId": "your_campaign_id",
    "phoneNumber": "+15555551234",
    "metadata": {
      "name": "John Doe",
      "company": "Acme Corp"
    }
  }'

Expected Response

{
  "success": true,
  "data": {
    "leadId": "jh7abc123xyz"
  },
  "error": null
}
Congratulations! You’ve successfully created your first lead via the API.

Next Steps