cURL
curl --request GET \
--url https://api.yieldpoint.io/healthconst options = {method: 'GET'};
fetch('https://api.yieldpoint.io/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.yieldpoint.io/health"
response = requests.get(url)
print(response.text){
"status": "error",
"info": {},
"error": {},
"details": {}
}Health
Get health
GET
/
health
cURL
curl --request GET \
--url https://api.yieldpoint.io/healthconst options = {method: 'GET'};
fetch('https://api.yieldpoint.io/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.yieldpoint.io/health"
response = requests.get(url)
print(response.text){
"status": "error",
"info": {},
"error": {},
"details": {}
}