Health check
curl --request GET \
--url https://api.app.hrizn.io/v1/public/healthimport requests
url = "https://api.app.hrizn.io/v1/public/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.app.hrizn.io/v1/public/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET'};
fetch('https://api.app.hrizn.io/v1/public/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.app.hrizn.io/v1/public/health",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"data": {
"status": "ok",
"version": "1.2.0",
"timestamp": "2026-02-28T11:34:28.001Z"
}
}
Health check
Check if the API is operational
GET
/
health
Health check
curl --request GET \
--url https://api.app.hrizn.io/v1/public/healthimport requests
url = "https://api.app.hrizn.io/v1/public/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.app.hrizn.io/v1/public/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET'};
fetch('https://api.app.hrizn.io/v1/public/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.app.hrizn.io/v1/public/health",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"data": {
"status": "ok",
"version": "1.2.0",
"timestamp": "2026-02-28T11:34:28.001Z"
}
}
Returns the API status. This endpoint does not require authentication.
This is the only endpoint that does not require an
X-API-Key header. Use it to verify the API is operational before making authenticated requests.{
"data": {
"status": "ok",
"version": "1.2.0",
"timestamp": "2026-02-28T11:34:28.001Z"
}
}
Last modified on March 4, 2026
⌘I
