API ReferenceLukian API
Lukian API
for developers.
RESTful API with complete documentation. Integrate Lukian features into your applications.
https://api.lukian.ai/v1JWT Authentication
Token-based authentication with refresh tokens. Rate limiting on each endpoint.
Webhooks
Receive real-time notifications for new messages, leads, and status changes.
Rate Limiting
1000 req/min per API key. Bursts up to 50 req/s for batch operations.
HTTPS Only
All requests are encrypted. OAuth 2.0 support for third-party integrations.
Endpoints
The most commonly used endpoints in the Lukian API.
Quick example
List properties from your workspace.
JavaScript
const response = await fetch(
'https://api.lukian.ai/v1/properties',
{
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
}
);
const { data } = await response.json();
console.log(data.properties);SDKs
Official libraries for quick integration.
JavaScript / Node.jsAvailable
PythonIn development
PHPIn development
REST / cURLAvailable
Start building
Get your free API key and integrate Lukian into your application.