OpenAPI 3.0.0raw.githubusercontent.com2026-08-12123173410.4 KB

0574c98df104

Rfqs

List RFQs

Lists the authenticated account's RFQs, most recent first.

This is a synchronous read from the RFQ venue. It returns one unpaginated page of up to 100 RFQs. 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.

get/rfqs

Response

OK

Example response

{
  "results": [
    {
      "closed_reason": "EXPIRED",
      "created_at": 1640995200000,
      "expires_at": 1640995500000,
      "id": "r_2abCdEfGhIjKlMnOpQrStUvWxYz",
      "legs": [
        {
          "market": "BTC-USD-PERP",
          "price": "50000",
          "ratio": "1"
        }
      ],
      "quantity": "10"
    }
  ]
}