Health check
GET
/health
const url = 'http://localhost:8080/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://localhost:8080/healthReturns the health status of the API. Always accessible without authentication.