List RFQs
Lists the authenticated account's RFQs, most recent first.
This is a synchronous read from the RFQ venue. It returns one page of RFQs (up to 100 by default, sized via page_size), optionally filtered by state. The page is built from the RFQs the venue holds for the account and every account sharing its RFQ registration, of which only the authenticated account's are returned — a busy set of related accounts can therefore leave a page short. The response's next field carries the venue's cursor to the following page; pass it back as cursor to continue, and stop only when it is null — an empty results with a non-null next is normal, since the cursor tracks the venue's page, not this account's records. Each result includes the venue-issued RFQ identifier, lifecycle state, quantity, legs, counterparties, timestamps, and optional close reason. Venue state and close-reason strings are passed through.
Query parameters
RFQ state to filter by; omit for all states
Cursor from a prior response's next field; omit for the first (most recent) page
Records per page, between 1 and 1000; omit for the default of 100
Response
OK
Example response
{
"next": "cD0yMDIyLTAxLTAxKzAwJTNBMDA=",
"results": [
{
"closed_reason": "EXPIRED",
"created_at": 1640995200000,
"expires_at": 1640995500000,
"id": "r_2abCdEfGhIjKlMnOpQrStUvWxYz",
"legs": [
{
"market": "BTC-USD-PERP",
"price": "50000",
"ratio": "1"
}
],
"quantity": "10"
}
]
}