SUBCRIBE RFQs

SUB wss://ws.aevo.xyz

Returns matched order details.

REQUEST

op string required
Operation code allowed values: subscribe unsubscribe
data array of strings required
Channel name in the format rfqs
Example
{
 	"op":"subscribe", 
 	"data": ["rfqs"]
}

RESPONSE

channel string required
Channel name in the format rfqs
data.timestamp string required
Timestamp in UNIX timestamp in nanoseconds. Eg. 1680249600000000000
data.rfqs.status string required
RFQ status. E.g. opened | cancelled | rejected | filled | partial
data.rfqs.rfq_block_id string required
RFQ Block ID. Eg. 480e01dc0f624888af1c239091d6c805
data.rfqs.instruments.amount string required
Amount of contracts. Eg. 10.4
data.rfqs.instruments.instrument_id integer required
Instrument ID
Example
{
    "channel": "rfqs",
    "data": {
        "timestamp": "1691044533856085345",
        "rfqs": [
            {
                "status": "opened",
                "rfq_block_id": "480e01dc0f624888af1c239091d6c805",
                "instruments": [
                    {
                        "amount": "100000000",
                        "instrument_id": 3657
                    }
                ]
            }
        ]
    }
}