Settlement Dashboard

Live Settlement Dashboard

Real-time settlement monitoring for institutional operators - volume, fees, compliance rates, and corridor health at a glance.

← Delta Innovations

Overview

The Live Settlement Dashboard provides institutional operators with real-time visibility into settlement activity across the JIL Sovereign network. Monitor volume, fees, compliance rates, latency, and corridor health from a single interface - or consume the same data programmatically via REST and WebSocket APIs.

Key Metrics

Volume 24h $2.4M
Fees 24h $840
Compliance Rate 99.7%
Avg Latency 1.2s
Active Corridors 9
Transactions 24h 1,847

Corridor Monitoring

Each corridor displays its current operational status, volume, and latency. Degraded corridors trigger alerts to operator dashboards.

Corridor Status Volume 24h Avg Latency
US-BR Active $620,000 1.1s
US-AE Active $410,000 0.9s
EU-SG Active $380,000 1.3s
GB-HK Degraded $210,000 3.8s
CH-JP Active $190,000 1.0s

WebSocket Live Streaming

WebSocket Endpoint ws://host/ws/dashboard

Subscribe to real-time dashboard updates via WebSocket. The server pushes metric snapshots at configurable intervals, enabling live dashboard rendering without polling.

// Connect to live stream const ws = new WebSocket("wss://api.jilsovereign.com/ws/dashboard"); ws.onmessage = (event) => { const data = JSON.parse(event.data); // data.type: "metric_update" | "corridor_status" | "alert" // data.payload: { volume_24h, fees_24h, compliance_rate, ... } updateDashboard(data); };

REST API Endpoints

Method Endpoint Description
GET /v1/dashboard/summary Full dashboard summary with all key metrics
GET /v1/dashboard/corridors All corridor statuses and per-corridor metrics
GET /v1/dashboard/volume Volume time series with configurable interval
GET /v1/dashboard/compliance Compliance rate, flags, and hold statistics

Volume Time Series

Query volume data across configurable time intervals:

1h 6h 24h 7d 30d
GET /v1/dashboard/volume?interval=24h { "interval": "24h", "data_points": [ { "timestamp": "2026-03-26T15:00:00Z", "volume": 98200, "tx_count": 78 }, { "timestamp": "2026-03-26T16:00:00Z", "volume": 112400, "tx_count": 91 }, { "timestamp": "2026-03-26T17:00:00Z", "volume": 87600, "tx_count": 64 } ], "total_volume": 2410000, "total_tx_count": 1847 }