Live Dash CoinJoin queue activity
Endpoint Details
CoinJoin Queues (Dash)
Real-time CoinJoin mixing queue activity on the Dash network
GET
Live Dash CoinJoin queue activity
Overview
/leokit/coinjoin/queues exposes live CoinJoin mixing-queue activity on the Dash network. Data comes from a persistent background scanner that maintains TCP connections to Dash masternodes and collects dsq broadcasts as they happen.
Use this to display real-time mixing-queue state in privacy wallets, or to audit CoinJoin liquidity across denominations.
Endpoint
Request
Authentication
This endpoint is public — noApi-Key required.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
detail | boolean | No | If true, include the full per-entry list. Default: summaries only |
Response
Success (200) — summary mode
Success (200) — detail mode (?detail=true)
Field Reference
Queue Summary
| Field | Description |
|---|---|
denomination | Mixing denomination label (e.g. 0.1 DASH) |
ready | Count of ready (joinable) queues at this denomination |
total_seen | Lifetime count of dsq broadcasts seen since startup |
Scanner Status
| Field | Description |
|---|---|
connected_masternodes | Number of masternodes currently TCP-connected |
running_since | When the scanner started (ISO-8601) |
last_dsq_at | Timestamp of the most recent dsq broadcast received |
Examples
Summaries only
Full entry list
Notes
- Data resets when the scanner restarts.
total_seenis a counter from process start, not a long-term cumulative. - The scanner only listens for
dsqbroadcasts; it does not participate in mixing itself. - For a deeper integration (push instead of poll), reach out via the Dashboard — there is no streaming variant of this endpoint yet.