Network stats
curl --request GET \
--url https://relay-production-f175.up.railway.app/v1/statsimport requests
url = "https://relay-production-f175.up.railway.app/v1/stats"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://relay-production-f175.up.railway.app/v1/stats', 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/stats",
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/stats"
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/stats")
.asString();require 'uri'
require 'net/http'
url = URI("https://relay-production-f175.up.railway.app/v1/stats")
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{
"settled": 142, "failed": 3,
"volume": [
{ "token": "0xe2387F04d3858e7Cb64Ef5Ed6617f9B2fcEEAfa2", "amount": "2410000000000" },
{ "token": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "amount": "1493210000" }
],
"medianMs": 6120,
"quoteLatency": { "count": 210, "p50": 812, "p95": 1610 },
"nodesOnline": 3, "nodesTotal": 3, "windowHours": 24
}
Network
Network stats
Settlements, volume and quote latency over the last 24 hours.
GET
/
v1
/
stats
Network stats
curl --request GET \
--url https://relay-production-f175.up.railway.app/v1/statsimport requests
url = "https://relay-production-f175.up.railway.app/v1/stats"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://relay-production-f175.up.railway.app/v1/stats', 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/stats",
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/stats"
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/stats")
.asString();require 'uri'
require 'net/http'
url = URI("https://relay-production-f175.up.railway.app/v1/stats")
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{
"settled": 142, "failed": 3,
"volume": [
{ "token": "0xe2387F04d3858e7Cb64Ef5Ed6617f9B2fcEEAfa2", "amount": "2410000000000" },
{ "token": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "amount": "1493210000" }
],
"medianMs": 6120,
"quoteLatency": { "count": 210, "p50": 812, "p95": 1610 },
"nodesOnline": 3, "nodesTotal": 3, "windowHours": 24
}
number
Settlements in the window.
number
Executions that failed in the window.
object[]
{ token, amount }: proceeds per buy token and sell amounts per sell token.number | null
Median milliseconds from execution to settlement.
object
{ count, p50, p95 } in milliseconds, from request to firm quote.number
Connected nodes in the
quoting state with a fresh heartbeat.number
Connected nodes in any state.
number
24.
{
"settled": 142, "failed": 3,
"volume": [
{ "token": "0xe2387F04d3858e7Cb64Ef5Ed6617f9B2fcEEAfa2", "amount": "2410000000000" },
{ "token": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "amount": "1493210000" }
],
"medianMs": 6120,
"quoteLatency": { "count": 210, "p50": 812, "p95": 1610 },
"nodesOnline": 3, "nodesTotal": 3, "windowHours": 24
}

