Health
Basic health check. Returns status + deployed info.
Example
fetch('https://auth.magicrunez.com/health', {
method: 'GET',
headers: { 'Content-Type': 'application/json'
}
})
.then(r => r.json())
.then(console.log)
.catch(console.error);