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": "2023-11-07T05:31:56Z"
}
}Health check
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": "2023-11-07T05:31:56Z"
}
}Last modified on July 1, 2026
⌘I
