Sofa
Admin

Get update check status

Fetch whether automatic update checks are enabled, and the latest cached check result if available.

GET
/admin/update-check
better-auth.session_token<token>

Better Auth session cookie

In: cookie

Response Body

application/json

curl -X GET "http://localhost:3000/api/v1/admin/update-check"
{
  "enabled": true,
  "updateCheck": {
    "updateAvailable": true,
    "currentVersion": "string",
    "latestVersion": "string",
    "releaseUrl": "string",
    "lastCheckedAt": "string"
  }
}