Skip to content

Browse Open RFQ Requests

Only requests whose status is OPEN and whose expires_at is in the future appear in the results. The list is sorted by creation time with the newest entries first, capped at 100 items.

GET /rfq/requests

Server: https://api.openfish.fun

Authentication: L2 (HMAC) required


FieldTypeDescription
dataarray of RfqRequestList of open RFQ requests

RfqRequest Schema:

FieldTypeRequiredDescription
rfqIdstringYesRFQ UUID
requesterstringYesAPI key of the requester
tokenIdstringYesToken ID
sidestringYes"BUY" or "SELL"
sizestringYesRequested size
statusstringYes"OPEN"
expiresAtintegerYesExpiration timestamp (Unix seconds)

Sample Response:

{
"data": [
{
"rfqId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"requester": "9180014b-33c8-9240-a14b-bdca11c0a465",
"tokenId": "52114319501245...",
"side": "BUY",
"size": "100",
"status": "OPEN",
"expiresAt": 1712678400
}
]
}
{ "error": "invalid authorization" }