Health check
GET
/health
const url = 'http://localhost:8080/health';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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://localhost:8080/health \ --header 'Authorization: Bearer <token>'Returns the health status of the API. Always accessible without authentication.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Service is healthy
Media type application/json
HealthResponse
object
status
required
string
Example generated
{ "status": "example"}