API REFERENCE
REST API & SDK Guide
Integrate voice streaming sessions, trigger proactive calls, and retrieve conversational transcripts programmatically.
Authentication
All API requests must supply your account private key in the Authorization header.
Authorization: Bearer YOUR_API_KEY
Sessions Endpoints
POST
/api/v1/voice/sessions
Create a new voice streaming socket session.
Request Payload Examples
{
"shop": "at-lowest-2.myshopify.com",
"customerId": "cust_987654",
"language": "en-US"
}
"shop": "at-lowest-2.myshopify.com",
"customerId": "cust_987654",
"language": "en-US"
}
Response JSON Payload
{
"id": "sess_1a2b3c4d5e",
"wsUrl": "wss://ws.atlowest.com/stream?token=jwt_auth_token",
"createdAt": "2026-06-14T22:00:00Z"
}
"id": "sess_1a2b3c4d5e",
"wsUrl": "wss://ws.atlowest.com/stream?token=jwt_auth_token",
"createdAt": "2026-06-14T22:00:00Z"
}