Skip to main content
GET
/
health
Service health check
curl --request GET \
  --url https://swap.xoxno.com/health
const options = {method: 'GET'};

fetch('https://swap.xoxno.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://swap.xoxno.com/health"

response = requests.get(url)

print(response.text)
false
{
  "status": "ok"
}

Response

200 - application/json

Service is healthy.

status
enum<string>

Service health status.

Available options:
ok