Health check
curl --request GET \
--url https://api.orelys.io/v1/healthimport requests
url = "https://api.orelys.io/v1/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orelys.io/v1/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "ok",
"version": "1.0.0",
"time": "2026-09-25T12:00:00.000Z"
}{
"error": {
"code": "ip_rate_limited",
"message": "An address can make at most 120 API calls a minute."
}
}Reference
Health check
Answers 200 when the API is up. No key needed. For every Orelys service, see the status page.
GET
/
v1
/
health
Health check
curl --request GET \
--url https://api.orelys.io/v1/healthimport requests
url = "https://api.orelys.io/v1/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orelys.io/v1/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "ok",
"version": "1.0.0",
"time": "2026-09-25T12:00:00.000Z"
}{
"error": {
"code": "ip_rate_limited",
"message": "An address can make at most 120 API calls a minute."
}
}No key needed. For the state of every Orelys service, see the status page.

