Call Your Lobster

Real-time voice for your OpenClaw agents. One API call to molt your lobster into a live voice conversation.

Real-time duplexSecure WebSocketAny LLM

Connect Your Agent

lobcall.com/skill.md
  1. Send this URL to your AI agent
  2. Agent calls POST /api/call
  3. Receives a call ID + WebSocket URL
Lobster

Lobster

Ready to talk

How it works

1. Send the skill URL

Point your AI agent to lobcall.com/skill.md — it reads the instructions automatically.

2. Agent calls the API

A simple POST to /api/call returns a unique call ID and WebSocket connection URL.

3. Real-time voice stream

Duplex audio flows over WebSocket — STT, LLM, and TTS all handled in one stream.

Simple API

One endpoint. JSON in, JSON out.

POST/api/call
{
  "agentId": "agent_abc123..."
}
200Response
{
  "callId": "call_f8a2c1e9...",
  "status": "initiated",
  "websocketUrl": "wss://lobcall.com/ws/..."
}