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.

Official SDKs

Use our official client libraries to integrate LiquidCortex into your applications.

Python

-
Coming Soon

Node.js

-
Coming Soon

Go

-
Coming Soon

Ruby

-
Coming Soon

Python Quick Start

from liquidcortex import LiquidCortex

client = LiquidCortex(api_key="lc_live_sk_xxx")

# Chat with an AI employee
response = client.chat(
    employee="atlas",
    message="Schedule a meeting with the team"
)

print(response.content)
# "I've scheduled a team meeting for tomorrow at 2pm..."

Node.js Quick Start

import { LiquidCortex } from '@liquidcortex/sdk';

const client = new LiquidCortex('lc_live_sk_xxx');

// Chat with an AI employee
const response = await client.chat({
  employee: 'atlas',
  message: 'Schedule a meeting with the team'
});

console.log(response.content);

Go Quick Start

package main

import "github.com/liquidcortex/go-sdk"

func main() {
    client := liquidcortex.NewClient("lc_live_sk_xxx")

    response, _ := client.Chat(liquidcortex.ChatRequest{
        Employee: "atlas",
        Message:  "Schedule a meeting with the team",
    })

    fmt.Println(response.Content)
}