Health and Readiness
curl --request GET \
--url https://inkypump.com/api/health/readyimport requests
url = "https://inkypump.com/api/health/ready"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://inkypump.com/api/health/ready', 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://inkypump.com/api/health/ready",
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://inkypump.com/api/health/ready"
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://inkypump.com/api/health/ready")
.asString();require 'uri'
require 'net/http'
url = URI("https://inkypump.com/api/health/ready")
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_bodyAPI Documentation
Health and Readiness
Check application readiness and the release serving production.
GET
/
api
/
health
/
ready
Health and Readiness
curl --request GET \
--url https://inkypump.com/api/health/readyimport requests
url = "https://inkypump.com/api/health/ready"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://inkypump.com/api/health/ready', 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://inkypump.com/api/health/ready",
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://inkypump.com/api/health/ready"
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://inkypump.com/api/health/ready")
.asString();require 'uri'
require 'net/http'
url = URI("https://inkypump.com/api/health/ready")
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_bodyUse readiness for service monitoring. It is not proof that a wallet transaction, one token route, or one RPC call will succeed.
Request
curl "https://inkypump.com/api/health/ready"
Response use
- Require HTTP
200and top-level readiness before directing a new flow to production. - Record the returned release with incident logs.
- Inspect individual checks when readiness fails.
- Keep transaction simulation and receipt verification in the user flow even when readiness is healthy.
GET /api/health/live is the lighter process-liveness check. Use /ready when deciding whether the service and required dependencies can serve normal requests.
A healthy API can still be behind the chain for a short time. A successful on-chain receipt remains the source of truth for launch creation.