Cessio Docs
ReferenceRfqIncoming

Active incoming RFQs of the key's party (REST alternative to the stream)

The same RFQs as the /maker/stream snapshot, plus `myQuote` — this party's quote (or null). Polling is legitimate for simple bots, but the canonical path is the WebSocket: it also carries quote statuses and settlement progress.

GET
/rfq/incoming

The same RFQs as the /maker/stream snapshot, plus myQuote — this party's quote (or null). Polling is legitimate for simple bots, but the canonical path is the WebSocket: it also carries quote statuses and settlement progress.

Authorization

ApiKeyAuth
X-API-Key<token>

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/rfq/incoming"
[  {    "rfqId": "string",    "taker": "taker",    "direction": "SELL",    "qty": "5.0",    "base": "cbtc",    "quote": "usdcx",    "deadline": "2019-08-24T14:15:22Z",    "invitedMakers": [      "string"    ],    "feeBps": 25,    "open": true,    "myQuote": {      "quoteId": "string",      "rfqId": "string",      "maker": "acme-mm-4f2a91",      "price": "97300.0",      "validUntil": "2019-08-24T14:15:22Z",      "status": "pending",      "settling": true,      "proposalCid": "string"    }  }]