Connected nodes
curl --request GET \
--url https://relay-production-f175.up.railway.app/v1/nodesimport requests
url = "https://relay-production-f175.up.railway.app/v1/nodes"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://relay-production-f175.up.railway.app/v1/nodes', 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://relay-production-f175.up.railway.app/v1/nodes",
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://relay-production-f175.up.railway.app/v1/nodes"
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://relay-production-f175.up.railway.app/v1/nodes")
.asString();require 'uri'
require 'net/http'
url = URI("https://relay-production-f175.up.railway.app/v1/nodes")
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_body{
"nodes": [
{
"address": {},
"name": "<string>",
"version": "<string>",
"state": "<string>",
"degraded": {},
"region": {},
"signerType": {},
"fresh": true,
"corridors": [
{}
],
"inventory": [
{}
],
"connectedAt": "<string>",
"lastHeartbeat": {},
"solanaAddress": "<string>",
"chains": [
{}
]
}
]
}Network
Connected nodes
Every resolver node connected to the relay right now, with its live state and inventory.
GET
/
v1
/
nodes
Connected nodes
curl --request GET \
--url https://relay-production-f175.up.railway.app/v1/nodesimport requests
url = "https://relay-production-f175.up.railway.app/v1/nodes"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://relay-production-f175.up.railway.app/v1/nodes', 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://relay-production-f175.up.railway.app/v1/nodes",
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://relay-production-f175.up.railway.app/v1/nodes"
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://relay-production-f175.up.railway.app/v1/nodes")
.asString();require 'uri'
require 'net/http'
url = URI("https://relay-production-f175.up.railway.app/v1/nodes")
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_body{
"nodes": [
{
"address": {},
"name": "<string>",
"version": "<string>",
"state": "<string>",
"degraded": {},
"region": {},
"signerType": {},
"fresh": true,
"corridors": [
{}
],
"inventory": [
{}
],
"connectedAt": "<string>",
"lastHeartbeat": {},
"solanaAddress": "<string>",
"chains": [
{}
]
}
]
}This is the relay’s in-memory view: what each node said in its last heartbeat. For the registry with
reliability scores, use
GET /v1/resolvers.
object[]
Show Node
Show Node
address
The node’s identity.
string
string
Node software version.
string
quoting, degraded or paused.string | null
The decline reason while degraded.
string | null
string | null
keyfile, turnkey or mpcvault.boolean
Whether a heartbeat arrived inside the staleness window (35 s).
object[]
{ chainId, baseToken, quoteToken } the node advertised.object[]
{ chainId, token, balance, allowance } from the last heartbeat.string
string | null
string
Present once the node proved a Solana key.
object[]
{ chainId, state, degraded } per chain, from nodes that report them.
