Skip to main content

Subscribe

{
  "method": "subscribe",
  "subscription": {
    "type": "newTransactions"
  }
}

Response

{
  "channel": "newTransactions",
  "data": {
    "transactionId": "0x1234...",
    "type": "OrderPlaced",
    "timestamp": 1701234567890,
    "blockNumber": 12345,
    "txIndex": 0,
    "orderId": "0x5678...",
    "data": {}
  }
}

Notes

  • The websocket stream currently broadcasts only the transaction envelope. data is sent as an empty object. - Use the REST explorer endpoints if you need full transaction payloads.