Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
cURL
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" }
Returns a small liveness response when the backend API is running.
Runtime is reachable.
"ok"
"firmament"
"0.1.0"