Settlement feed
curl --request GET \
--url https://relay-production-f175.up.railway.app/v1/feedimport requests
url = "https://relay-production-f175.up.railway.app/v1/feed"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://relay-production-f175.up.railway.app/v1/feed', 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/feed",
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/feed"
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/feed")
.asString();require 'uri'
require 'net/http'
url = URI("https://relay-production-f175.up.railway.app/v1/feed")
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{
"fills": [
{
"executionId": {},
"quoteId": {},
"txHash": "<string>",
"sellToken": "<string>",
"buyToken": "<string>",
"sellAmount": "<string>",
"proceeds": "<string>",
"resolver": {},
"settledAt": "<string>",
"tookMs": {},
"confirmed": {}
}
]
}Network
Settlement feed
The most recent settled fills across every chain.
GET
/
v1
/
feed
Settlement feed
curl --request GET \
--url https://relay-production-f175.up.railway.app/v1/feedimport requests
url = "https://relay-production-f175.up.railway.app/v1/feed"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://relay-production-f175.up.railway.app/v1/feed', 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/feed",
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/feed"
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/feed")
.asString();require 'uri'
require 'net/http'
url = URI("https://relay-production-f175.up.railway.app/v1/feed")
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{
"fills": [
{
"executionId": {},
"quoteId": {},
"txHash": "<string>",
"sellToken": "<string>",
"buyToken": "<string>",
"sellAmount": "<string>",
"proceeds": "<string>",
"resolver": {},
"settledAt": "<string>",
"tookMs": {},
"confirmed": {}
}
]
}number
default:"50"
1 to 200.
object[]
Show Fill
Show Fill
string | null
string | null
Null for an indexed fill no quote links to.
string
0x hash on EVM, base58 signature on Solana.string
string
string
string
string | null
The winning node’s identity.
string
ISO 8601.
number | null
Execution to settlement.
boolean | null
Whether the indexer has confirmed it (12 blocks on EVM, finalized on Solana).

