Skip to main content
GET
/
health
Check runtime liveness
curl --request GET \
  --url https://api.firmament.shaikazeem.com/health
const options = {method: 'GET'};

fetch('https://api.firmament.shaikazeem.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "status": "ok",
  "service": "firmament",
  "version": "0.1.3"
}

Response

200 - application/json

Runtime is reachable.

status
string
required
Example:

"ok"

service
string
required
Example:

"firmament"

version
string
required
Example:

"0.1.0"