API Reference
Use this section when implementing or debugging an integration.
Base URL
https://rtc-svc.blendlix.com
Public endpoints
| Endpoint | Purpose |
|---|---|
POST /v1/call/session-token | Issue a short-lived call session token. |
GET /v1/calls/history | Read call history for the authenticated participant. |
GET /healthz | Check whether the service process is alive. |
GET /readyz | Check whether dependencies are ready. |
GET /v1/ws | WebSocket signaling endpoint. |
Response format
Successful REST responses return JSON. Error responses use:
{
"success": false,
"error": {
"code": "ERROR_CODE",
"message": "Human readable message"
}
}