Skip to main content
GET
/
api
/
rfq
/
status
/
{quoteId}
Get payout status
curl --request GET \
  --url https://api.example.com/api/rfq/status/{quoteId} \
  --header 'Authorization: <authorization>'
{
  "success": true,
  "data": {
    "quoteId": "4c2b7e8f-3a3c-4a08-94ad-1234567890ab",
    "status": "awaiting_escrow_deposit",
    "quotedToAmount": 4425.00,
    "escrowAddress": "0xAbcDef0123456789AbcDef0123456789AbcDef01",
    "depositAmountAtomic": "227250000",
    "tokenAddress": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174",
    "chainId": 137,
    "escrowState": "active"
  }
}
Lookup by quoteId from POST /rfq/execute. Prefer Webhooks over polling.
Scope payouts:read

Headers

Authorization
string
required
API key.

Path parameters

quoteId
string
required
UUID of the locked quote.

Response

Fields are populated progressively. Pre-settle reads show core + escrow detail; post-settle reads add the actual amounts and transactionId.
quoteId
string
Echoed back.
status
string
Coarse-grained status. See Core Concepts.
transactionId
string
UUID of the underlying payout — use with GET /payouts/{id}. Populated once written.
quotedToAmount
number
Destination amount as quoted at lock time.
actualToAmount
number
Destination amount that actually settled. Post-delivery.
deltaAmount
number
Signed actualToAmount − quotedToAmount. Surfaces FX slippage.
settleTxHash
string
On-chain settlement tx hash (S2F / fiat-to-stablecoin).
onrampProvider
string
Opaque routing identifier of the onramp leg.
offrampProvider
string
Opaque routing identifier of the offramp leg.
paymentUrl
string
Hosted payment page (onramp flows).
bankingInstructions
object
Map of stringstring for bank-transfer settlement.
errorMessage
string
Set when status is failed.
{
  "success": true,
  "data": {
    "quoteId": "4c2b7e8f-3a3c-4a08-94ad-1234567890ab",
    "status": "awaiting_escrow_deposit",
    "quotedToAmount": 4425.00,
    "escrowAddress": "0xAbcDef0123456789AbcDef0123456789AbcDef01",
    "depositAmountAtomic": "227250000",
    "tokenAddress": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174",
    "chainId": 137,
    "escrowState": "active"
  }
}