Livqeno Docs

API Reference

One versioned REST API, shared by every SDK and the CLI. Base path /v1.

Every Livqeno SDK and the CLI call the same REST API. There is no private surface: what an SDK does, you can do with curl and the same credential.

The reference pages below are generated from the API's controllers, so they list what the server actually serves — all 110 versioned endpoints, with each one's credential, rate limit and validated parameters.

Where to start

If you want toRead
Understand the base path, error shape and paginationConventions
Mint a token for a callRTC API
Create conversations, post messages server-sideChat API
Run a live streamLive Streaming API
Read connection history and errorsObservability API
Register a webhook endpointWebhooks API
Manage projects, teammates and keysProjects API
See everything at onceAll endpoints

Interactive schemas

The API serves its own OpenAPI document. On a local stack:

http://localhost:4100/docs

That is the place to read full response schemas and try a request against your own data. These pages cover request parameters, credentials and semantics; the OpenAPI document covers response shapes.

Which credential

Four credentials exist and none can act for another.

CredentialSent asUsed by
Project API keyAuthorization: Bearer rvk_<env>_id.secretYour backend
RTC tokenQuery parameter on the signaling socketA browser or device in a call
Chat tokenAuthorization: Bearer …, or a query parameter on the chat socketA browser or device in a conversation
Dashboard sessionAuthorization: Bearer <jwt>The dashboard and the CLI

Full model in Authentication.

Next steps