Health Check
GET
/health
const url = 'https://api.qeychain.xyz/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://api.qeychain.xyz/healthHealth check endpoint with database connectivity verification.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example