Skip to content

Getting Started

Get up and running with the Brightly AI Developer API in three steps.

Navigate to Settings > Integrations > API Keys in your Brightly AI dashboard. Click Create API Key, give it a name, and select the scopes you need.

Terminal window
curl https://api.brightlyai.app/api/v1/leads?limit=5 \
-H "Authorization: Bearer brk_your_api_key_here"
{
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"first_name": "Jane",
"last_name": "Smith",
"phone": "+15551234567",
"email": "jane@example.com",
"status": "new",
"temperature": "hot",
"lead_score": 85,
"created_at": "2026-05-10T14:30:00Z"
}
],
"meta": {
"page": 1,
"limit": 5,
"total": 47,
"total_pages": 10
}
}