Check V9 HTTP readiness
curl --request GET \
--url https://build.vibechain.com/api/retard/v9/health \
--header 'API-KEY: <api-key>'import requests
url = "https://build.vibechain.com/api/retard/v9/health"
headers = {"API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-KEY': '<api-key>'}};
fetch('https://build.vibechain.com/api/retard/v9/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://build.vibechain.com/api/retard/v9/health",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"API-KEY: <api-key>"
],
]);
$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://build.vibechain.com/api/retard/v9/health"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://build.vibechain.com/api/retard/v9/health")
.header("API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/retard/v9/health")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"ok": true,
"scope": "HTTP_CONFIG_READINESS",
"releaseId": "<string>",
"chainId": 123,
"settlementAutomationConfigured": true,
"checks": {
"runtimeEnabled": true,
"publicReadsEnabled": true,
"readerConfigured": true
},
"reason": "<string>"
}{
"error": "API_KEY_REQUIRED_OR_RATE_LIMITED",
"docs": "<string>"
}{
"ok": true,
"scope": "HTTP_CONFIG_READINESS",
"releaseId": "<string>",
"chainId": 123,
"settlementAutomationConfigured": true,
"checks": {
"runtimeEnabled": true,
"publicReadsEnabled": true,
"readerConfigured": true
},
"reason": "<string>"
}Runtime
Check V9 HTTP readiness
GET
/
health
Check V9 HTTP readiness
curl --request GET \
--url https://build.vibechain.com/api/retard/v9/health \
--header 'API-KEY: <api-key>'import requests
url = "https://build.vibechain.com/api/retard/v9/health"
headers = {"API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-KEY': '<api-key>'}};
fetch('https://build.vibechain.com/api/retard/v9/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://build.vibechain.com/api/retard/v9/health",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"API-KEY: <api-key>"
],
]);
$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://build.vibechain.com/api/retard/v9/health"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://build.vibechain.com/api/retard/v9/health")
.header("API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/retard/v9/health")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"ok": true,
"scope": "HTTP_CONFIG_READINESS",
"releaseId": "<string>",
"chainId": 123,
"settlementAutomationConfigured": true,
"checks": {
"runtimeEnabled": true,
"publicReadsEnabled": true,
"readerConfigured": true
},
"reason": "<string>"
}{
"error": "API_KEY_REQUIRED_OR_RATE_LIMITED",
"docs": "<string>"
}{
"ok": true,
"scope": "HTTP_CONFIG_READINESS",
"releaseId": "<string>",
"chainId": 123,
"settlementAutomationConfigured": true,
"checks": {
"runtimeEnabled": true,
"publicReadsEnabled": true,
"readerConfigured": true
},
"reason": "<string>"
}Authorizations
Caller-specific VibeChain API key created through /apikey/create.
Response
Runtime, public reads, and the projection reader are ready
⌘I