Skip to main content
Connect to /ws/stats to receive read-only MultiversX network snapshots without sending a subscribe message.

Endpoint

wss://relayer.xoxno.com/ws/stats
Use /ws for topic subscriptions and /ws/stats for push-only network snapshots.

Pushed Event

{
  "type": "networkStats",
  "data": {
    "network": {
      "notarizedTps": 18.5,
      "currentAps": 42
    },
    "mempool": {
      "estimatedQueue": 120,
      "pressure": 0.18
    },
    "shards": {
      "0": {
        "latestNonce": 123456,
        "blockTimeMsP50": 6000
      }
    }
  }
}

Fields

FieldMeaning
network.notarizedTpsNotarized transactions per second.
network.currentApsCurrent accounts-per-second signal from account delta ingestion.
mempool.estimatedQueueEstimated pending transaction queue.
mempool.pressureQueue pressure from 0 to 1.
shardsPer-shard block and throughput metrics.

Delivery

ModeBehavior
On connectSends the latest snapshot immediately.
PeriodicDefault interval is about 6 s, clamped between 500 ms and 30 s.
Event-drivenNew blocks or validator state changes can trigger a debounced push.

Limits

LimitValue
Client messagesNone; this endpoint is push-only.
Topic slotsNone; /ws/stats does not consume /ws topic slots.
ReconnectOpen a new socket and wait for the initial snapshot.