GET /api/healthcheck
curl --request GET \
--url https://public-api.binibit.com/api/healthcheckimport requests
url = "https://public-api.binibit.com/api/healthcheck"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://public-api.binibit.com/api/healthcheck', 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://public-api.binibit.com/api/healthcheck",
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;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://public-api.binibit.com/api/healthcheck"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://public-api.binibit.com/api/healthcheck")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api.binibit.com/api/healthcheck")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyMarket Data
GET /api/healthcheck
Liveness probe — confirms the API service is up.
GET
/
api
/
healthcheck
GET /api/healthcheck
curl --request GET \
--url https://public-api.binibit.com/api/healthcheckimport requests
url = "https://public-api.binibit.com/api/healthcheck"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://public-api.binibit.com/api/healthcheck', 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://public-api.binibit.com/api/healthcheck",
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;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://public-api.binibit.com/api/healthcheck"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://public-api.binibit.com/api/healthcheck")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api.binibit.com/api/healthcheck")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyDescription
Returns the assembly name and version of the running API service. Use it as a liveness probe in your monitoring or CI.Parameters
This endpoint takes no query parameters.Response
A single JSON string.Example request
curl https://public-api.binibit.com/api/healthcheck
Example response
"PublicApi v1.0.17.0"
Use as a liveness probe
# Returns 0 (success) when API is alive, non-zero on failure.
curl -fsS https://public-api.binibit.com/api/healthcheck > /dev/null
# Kubernetes-style probe
livenessProbe:
httpGet:
path: /api/healthcheck
port: 443
scheme: HTTPS
host: public-api.binibit.com
initialDelaySeconds: 10
periodSeconds: 30
Notes
- The version string format is
<AssemblyName> v<MAJOR>.<MINOR>.<BUILD>.<REVISION>. - This endpoint is not rate-limited the same way as data endpoints — it exists specifically for high-frequency monitoring.
- For full system status (per-component uptime, incidents), see the status page when available.
