Health check
GET
/health
const url = 'http://127.0.0.1:7677/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 http://127.0.0.1:7677/healthResponses
Section titled “ Responses ”Server is up
Media type application/json
object
ok
required
boolean
version
required
string
Example
{ "ok": true, "version": "0.15.5"}