Healthcheck
GET
/api/v1/health
const url = 'https://d1vrh75868.execute-api.us-east-2.amazonaws.com/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://d1vrh75868.execute-api.us-east-2.amazonaws.com/api/v1/healthResponses
Section titled “ Responses ”Successful Response
Media type application/json
Response Healthcheck Api V1 Health Get
object
key
additional properties
string
Example generated
{ "additionalProperty": "example"}