Developer platform — preview. The REST API, webhooks, and SDKs are in active development and not yet generally available. Endpoints and API keys may change, and the client SDKs are not yet published. We'll announce general availability when it's ready.
Webhooks
Receive real-time notifications when events occur.
https://api.yourapp.com/webhooks/liquidcortexactive• Last triggered 2 hours ago
task.completedchat.message
Available Events
task.completedWhen an AI employee completes a task
task.failedWhen a task fails or errors
chat.messageWhen an employee sends a response
credits.lowWhen credits drop below threshold
employee.statusWhen employee status changes
Example Payload
{
"event": "task.completed",
"timestamp": "2024-12-31T10:30:00Z",
"data": {
"task_id": "task_xxx",
"employee": "atlas",
"result": "Meeting scheduled successfully",
"credits_used": 1
}
}