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

0574c98df104

Rfqs

List RFQ drafts

Lists the authenticated account's stored RFQ drafts, most recent first.

The response is unpaginated because each account may store at most 20 drafts. Drafts are private to the account and have no effect on venue RFQs until their contents are submitted through POST /v1/rfqs.

get/rfqs/drafts

Response

OK

Example response

{
  "results": [
    {
      "created_at": 1640995200000,
      "id": "1784275070090201698744820000",
      "legs": [
        {
          "market": "BTC-USD-PERP",
          "price": "50000",
          "ratio": "1"
        }
      ],
      "quantity": "10",
      "strategy": "straddle",
      "updated_at": 1640995200000
    }
  ]
}