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.
Endpoint
Section titled “Endpoint”GET /rfq/requestsServer: https://api.openfish.fun
Authentication: L2 (HMAC) required
Responses
Section titled “Responses”200 — Active RFQs returned
Section titled “200 — Active RFQs returned”| Field | Type | Description |
|---|---|---|
data | array of RfqRequest | List of open RFQ requests |
RfqRequest Schema:
| Field | Type | Required | Description |
|---|---|---|---|
rfqId | string | Yes | RFQ UUID |
requester | string | Yes | API key of the requester |
tokenId | string | Yes | Token ID |
side | string | Yes | "BUY" or "SELL" |
size | string | Yes | Requested size |
status | string | Yes | "OPEN" |
expiresAt | integer | Yes | Expiration 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 } ]}401 — Unauthorized
Section titled “401 — Unauthorized”{ "error": "invalid authorization" }