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/liquidcortex
active• Last triggered 2 hours ago
task.completedchat.message

Available Events

task.completed

When an AI employee completes a task

task.failed

When a task fails or errors

chat.message

When an employee sends a response

credits.low

When credits drop below threshold

employee.status

When 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
  }
}