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