Check service health
GET
/api/health
const url = 'https://example.com/api/health';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/healthResponses
Section titled “ Responses ”The app is reachable and reports database readiness.
Media type application/json
object
app
required
string
status
required
string
database
required
timestamp
required
string format: date-time
Example
{ "app": "solivio", "status": "ok", "database": { "status": "not-configured" }}