δΈ­ζ–‡

OpenClaw Web Interface
Open Source AI Assistant Web API

Interact with OpenClaw AI assistant via REST API and WebSocket. Build powerful custom AI applications.

What is OpenClaw Web Interface?

OpenClaw Web Interface provides programming interfaces including REST API and WebSocket. Developers can integrate AI capabilities into their applications, services, or workflows.

πŸ”Œ Capabilities: Send messages, receive replies, manage sessions, trigger skills, control plugins β€” all API-enabled.

REST API Endpoints

Example Call

curl -X POST http://localhost:3000/api/chat \
  -H "Content-Type: application/json" \
  -d '{"message": "Hello", "sessionId": "default"}'

WebSocket

const ws = new WebSocket('ws://localhost:3000/ws');
ws.onmessage = (event) => {
  console.log('AI:', event.data);
};

Conclusion

Visit openclaw.ai for complete API documentation.