Documentation
API Reference
Everything you need to integrate LiteClaw into your application.
Quick Start
# Install the SDK
npm install @liteclaw/sdk
# Create your first agent
import { LiteClaw } from '@liteclaw/sdk'
const client = new LiteClaw({ apiKey: 'your-key' })
const agent = await client.agents.create({
name: 'My Assistant',
model: 'claude-4',
systemPrompt: 'You are a helpful assistant.'
})
const response = await client.agents.chat(agent.id, {
message: 'Hello!'
})
console.log(response.content)Base URL: https://api.liteclaw.dev/v1
Quick Start
Get your first agent running in 5 minutes.
Authentication
API keys, scopes, and security best practices.
Agents API
Create, configure, and manage AI agents.
Memory & RAG
Vector memory, document upload, and retrieval.
Models
Supported models, parameters, and switching.
Rate Limits
Understanding and configuring rate limits.