GET /health
curl --request GET \
--url https://aquila.attaxr.com/healthconst options = {method: 'GET'};
fetch('https://aquila.attaxr.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/health"
response = requests.get(url)
print(response.text)Health
GET /health
GET
/
health
GET /health
curl --request GET \
--url https://aquila.attaxr.com/healthconst options = {method: 'GET'};
fetch('https://aquila.attaxr.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/health"
response = requests.get(url)
print(response.text)Response
200 - application/json

