Documentation

Quick Start API Reference WebSocket Protocol SDKs

Quick Start

Get started with TalkWire in minutes.

1. Get an API Key

Sign up at talkwire.io/login to get your API key.

2. Create a Session

curl -X POST https://talkwire.io/v1/sessions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response:

{
  "sessionId": "abc123",
  "websocketUrl": "wss://talkwire.io/v1/stream/abc123",
  "expiresAt": "2024-01-01T00:05:00Z"
}

3. Connect WebSocket

Connect to the websocketUrl and start streaming audio.