Skip to main content
GET
/
rfq
/
data
/
requests
List RFQ requests
curl --request GET \
  --url https://clob.kuest.com/rfq/data/requests \
  --header 'KUEST_ADDRESS: <kuest_address>' \
  --header 'KUEST_API_KEY: <kuest_api_key>' \
  --header 'KUEST_PASSPHRASE: <kuest_passphrase>' \
  --header 'KUEST_SIGNATURE: <kuest_signature>' \
  --header 'KUEST_TIMESTAMP: <kuest_timestamp>'
{
  "data": [
    {
      "requestId": "<string>",
      "userAddress": "<string>",
      "side": "<string>",
      "sizeIn": "<string>",
      "sizeOut": "<string>",
      "price": "<string>",
      "state": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "proxyAddress": "<string>",
      "token": "<string>",
      "complement": "<string>",
      "condition": "<string>",
      "acceptedQuoteId": "<string>",
      "expiry": "<string>"
    }
  ],
  "nextCursor": "<string>",
  "limit": 123,
  "count": 123,
  "totalCount": 123
}
List RFQ requests with optional filters.
This endpoint requires L2 authentication headers: KUEST_ADDRESS, KUEST_SIGNATURE, KUEST_TIMESTAMP, KUEST_API_KEY, and KUEST_PASSPHRASE.
The response includes data, nextCursor, and pagination metadata.

Headers

KUEST_ADDRESS
string
required

Checksummed wallet address performing the request.

KUEST_API_KEY
string<uuid>
required

API key obtained from the L1 derivation endpoint.

KUEST_PASSPHRASE
string
required

64 character hexadecimal passphrase associated with the API key.

KUEST_TIMESTAMP
string
required

Millisecond epoch timestamp (string) used for freshness checks.

KUEST_SIGNATURE
string
required

Hex-encoded HMAC-SHA256 signature built from the L2 signing string.

Query Parameters

requestIds
string
userAddress
string
states
string
state
string
markets
string
sizeMin
string
sizeMax
string
sizeUsdcMin
string
sizeUsdcMax
string
priceMin
string
priceMax
string
sortBy
string
sortDir
string
limit
integer<int32>
offset
string

Response

RFQ requests.

data
object[]
required
nextCursor
string
required
limit
integer<int32>
required
count
integer<int32>
required
totalCount
integer<int32>
required