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