Skip to content

Dash

Endpointhttps://rpc.lab.au.ro/dash
Protocoldashd JSON-RPC over HTTPS (POST)
Networkmainnet
Batch

dashd extends the bitcoind RPC dialect — the Bitcoin page patterns apply with the /dash path.

Quick test

bash
curl -X POST https://rpc.lab.au.ro/dash \
  -H "apikey: $YOUR_API_KEY" -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"1.0","id":1,"method":"getblockchaininfo","params":[]}'
# {"result":{"chain":"main","blocks":2487208,...},"id":1}

Dash-specific notes

  • InstantSend: transaction decodes include instantlock / instantlock_internal — an InstantSend-locked tx is safe to accept at 0 confirmations.
  • ChainLocks: getblockchaininfo does not carry it, but block decodes include chainlock: true once locked — deep reorgs below a chainlocked block are impossible.
  • Masternode/governance RPCs (masternode, gobject, …) are exposed by dashd's public surface and ride the same endpoint.

Limitations

Same family limits as Bitcoin.