Liveness probe for the Native service.
GET
/health
const url = 'https://native-api.sudomimus.com/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://native-api.sudomimus.com/healthResponses
Section titled “ Responses ”Service is ready.
Media type application/json
object
ready
required
boolean
service
required
string
version
required
string
Example generated
{ "ready": true, "service": "example", "version": "example"}