Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 1.2 KB

File metadata and controls

46 lines (31 loc) · 1.2 KB

Checking the Live Server Version

The Relaya SaaS backend (api.relaya.chat) is always current. If you need to confirm which server version is running — for example, to validate SDK/server compatibility before a release — use the public version endpoint. No authentication or API key required.

Endpoint

GET https://api.relaya.chat/api/public/version

Response:

{ "version": "1.2.0" }

The version field is a semver string that matches the server release tag published on GitHub.

curl example

curl https://api.relaya.chat/api/public/version

Health endpoint (also includes version)

The /health endpoint is used by uptime monitors and also exposes the version:

curl https://api.relaya.chat/health
{ "status": "ok", "version": "1.2.0", "timestamp": "2026-06-17T19:33:00.000Z" }

SDK compatibility

Cross-reference the live version against the compatibility table in the server repo to confirm which SDK package versions require which minimum server version.

Each SDK package README also lists the minimum server version it requires under Server Compatibility.