Quote lifecycle
curl --request GET \
--url https://relay-production-f175.up.railway.app/v1/quotes/{id}import requests
url = "https://relay-production-f175.up.railway.app/v1/quotes/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://relay-production-f175.up.railway.app/v1/quotes/{id}', 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/quotes/{id}",
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/quotes/{id}"
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/quotes/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://relay-production-f175.up.railway.app/v1/quotes/{id}")
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{
"quoteId": "5f1c…", "rfqId": "9a2e…", "chainId": 84532,
"status": "settled", "final": true,
"taker": "0xTaker", "recipient": "0xTaker",
"sellToken": "0xe238…", "buyToken": "0x036C…",
"sellAmount": "25000000000000", "received": "15508060000",
"fee": { "token": "0x036C…", "amount": "7754030" },
"gasFee": { "token": "0x036C…", "amount": "100000" },
"takerPays": "25000000000000", "proceeds": "15500205970",
"offersHash": "0x…", "band": { "mid": 1612.4, "…": "…" },
"quotedAt": "2026-09-14T12:00:00.000Z", "expiresAt": "2026-09-14T12:00:20.000Z",
"resolver": { "address": "0xResolver", "name": "Lagos desk" },
"replies": { "valid": 2, "rejected": 0, "declined": 0, "noReply": 0, "late": 0 },
"offers": [
{ "resolver": "0xResolver", "name": "Lagos desk", "outputAmount": "15508060000", "rank": 1, "status": "won", "latencyMs": 640, "won": true },
{ "resolver": "0xOther", "name": "node-bravo", "outputAmount": "15490000000", "rank": 2, "status": "lost", "latencyMs": 710, "won": false }
],
"steering": null,
"executions": [ { "executionId": "c07d…", "status": "settled", "reason": null, "txHash": "0x…", "submitter": "0xKeeper", "gasUsed": "412000", "createdAt": "…", "updatedAt": "…" } ],
"settlement": { "txHash": "0x…", "block": 31012350, "blockTime": "…", "confirmed": true, "confirmedAt": "…", "takerPays": "25000000000000", "proceeds": "15500205970", "gasFee": "100000", "submitter": "0xKeeper" },
"fills": [ { "orderHash": "0x…", "resolver": "0xResolver", "filler": "0x64Dc…", "logIndex": 12 } ],
"timeline": [
{ "at": "…", "event": "requested", "detail": null },
{ "at": "…", "event": "quoted", "detail": { "latencyMs": 812 } },
{ "at": "…", "event": "signed", "detail": null },
{ "at": "…", "event": "submitted", "detail": { "txHash": "0x…" } },
{ "at": "…", "event": "settled", "detail": { "block": 31012350 } },
{ "at": "…", "event": "final", "detail": null }
]
}
Swaps
Quote lifecycle
Everything that happened to a quote, from request to final confirmation.
GET
/
v1
/
quotes
/
{id}
Quote lifecycle
curl --request GET \
--url https://relay-production-f175.up.railway.app/v1/quotes/{id}import requests
url = "https://relay-production-f175.up.railway.app/v1/quotes/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://relay-production-f175.up.railway.app/v1/quotes/{id}', 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/quotes/{id}",
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/quotes/{id}"
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/quotes/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://relay-production-f175.up.railway.app/v1/quotes/{id}")
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{
"quoteId": "5f1c…", "rfqId": "9a2e…", "chainId": 84532,
"status": "settled", "final": true,
"taker": "0xTaker", "recipient": "0xTaker",
"sellToken": "0xe238…", "buyToken": "0x036C…",
"sellAmount": "25000000000000", "received": "15508060000",
"fee": { "token": "0x036C…", "amount": "7754030" },
"gasFee": { "token": "0x036C…", "amount": "100000" },
"takerPays": "25000000000000", "proceeds": "15500205970",
"offersHash": "0x…", "band": { "mid": 1612.4, "…": "…" },
"quotedAt": "2026-09-14T12:00:00.000Z", "expiresAt": "2026-09-14T12:00:20.000Z",
"resolver": { "address": "0xResolver", "name": "Lagos desk" },
"replies": { "valid": 2, "rejected": 0, "declined": 0, "noReply": 0, "late": 0 },
"offers": [
{ "resolver": "0xResolver", "name": "Lagos desk", "outputAmount": "15508060000", "rank": 1, "status": "won", "latencyMs": 640, "won": true },
{ "resolver": "0xOther", "name": "node-bravo", "outputAmount": "15490000000", "rank": 2, "status": "lost", "latencyMs": 710, "won": false }
],
"steering": null,
"executions": [ { "executionId": "c07d…", "status": "settled", "reason": null, "txHash": "0x…", "submitter": "0xKeeper", "gasUsed": "412000", "createdAt": "…", "updatedAt": "…" } ],
"settlement": { "txHash": "0x…", "block": 31012350, "blockTime": "…", "confirmed": true, "confirmedAt": "…", "takerPays": "25000000000000", "proceeds": "15500205970", "gasFee": "100000", "submitter": "0xKeeper" },
"fills": [ { "orderHash": "0x…", "resolver": "0xResolver", "filler": "0x64Dc…", "logIndex": 12 } ],
"timeline": [
{ "at": "…", "event": "requested", "detail": null },
{ "at": "…", "event": "quoted", "detail": { "latencyMs": 812 } },
{ "at": "…", "event": "signed", "detail": null },
{ "at": "…", "event": "submitted", "detail": { "txHash": "0x…" } },
{ "at": "…", "event": "settled", "detail": { "block": 31012350 } },
{ "at": "…", "event": "final", "detail": null }
]
}
string
required
The quote id.
string
string
number
string
quoted, signed, submitted, settled, failed, expired or cancelled.boolean
True once the indexer has confirmed the settlement.
object
{ token, amount }.object
{ token, amount }.string
object | null
The band at quote time.
string
object | null
{ address, name } of the winner.object
{ valid, rejected, declined, noReply, late } counts for the auction.object[]
Every valid bid, best first:
{ resolver, name, outputAmount, rank, status, latencyMs, won }.object | null
The steering that applied.
object[]
{ executionId, status, reason, txHash, submitter, gasUsed, createdAt, updatedAt }.object | null
{ txHash, block, blockTime, confirmed, confirmedAt, takerPays, proceeds, gasFee, submitter }. On Solana block is the slot.object[]
{ orderHash, resolver, filler, logIndex } from the indexer.object[]
{ at, event, detail } with events requested, quoted, signed, submitted, requote, failed, settled, final, expired.404 not_found for an unknown or malformed id.
{
"quoteId": "5f1c…", "rfqId": "9a2e…", "chainId": 84532,
"status": "settled", "final": true,
"taker": "0xTaker", "recipient": "0xTaker",
"sellToken": "0xe238…", "buyToken": "0x036C…",
"sellAmount": "25000000000000", "received": "15508060000",
"fee": { "token": "0x036C…", "amount": "7754030" },
"gasFee": { "token": "0x036C…", "amount": "100000" },
"takerPays": "25000000000000", "proceeds": "15500205970",
"offersHash": "0x…", "band": { "mid": 1612.4, "…": "…" },
"quotedAt": "2026-09-14T12:00:00.000Z", "expiresAt": "2026-09-14T12:00:20.000Z",
"resolver": { "address": "0xResolver", "name": "Lagos desk" },
"replies": { "valid": 2, "rejected": 0, "declined": 0, "noReply": 0, "late": 0 },
"offers": [
{ "resolver": "0xResolver", "name": "Lagos desk", "outputAmount": "15508060000", "rank": 1, "status": "won", "latencyMs": 640, "won": true },
{ "resolver": "0xOther", "name": "node-bravo", "outputAmount": "15490000000", "rank": 2, "status": "lost", "latencyMs": 710, "won": false }
],
"steering": null,
"executions": [ { "executionId": "c07d…", "status": "settled", "reason": null, "txHash": "0x…", "submitter": "0xKeeper", "gasUsed": "412000", "createdAt": "…", "updatedAt": "…" } ],
"settlement": { "txHash": "0x…", "block": 31012350, "blockTime": "…", "confirmed": true, "confirmedAt": "…", "takerPays": "25000000000000", "proceeds": "15500205970", "gasFee": "100000", "submitter": "0xKeeper" },
"fills": [ { "orderHash": "0x…", "resolver": "0xResolver", "filler": "0x64Dc…", "logIndex": 12 } ],
"timeline": [
{ "at": "…", "event": "requested", "detail": null },
{ "at": "…", "event": "quoted", "detail": { "latencyMs": 812 } },
{ "at": "…", "event": "signed", "detail": null },
{ "at": "…", "event": "submitted", "detail": { "txHash": "0x…" } },
{ "at": "…", "event": "settled", "detail": { "block": 31012350 } },
{ "at": "…", "event": "final", "detail": null }
]
}

