Get App Version
GET
/api/version
const url = 'https://example.com/api/version';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/versionReturn the current app build version.
Public endpoint (no auth required) — used by the frontend to detect when a new build has been deployed and prompt users to reload.
Responses
Section titled “ Responses ”Successful Response
Media type application/json
Response Get App Version Api Version Get
object
key
additional properties
string
Example generated
{ "additionalProperty": "example"}