Appearance
Dash
| Endpoint | https://rpc.lab.au.ro/dash |
| Protocol | dashd JSON-RPC over HTTPS (POST) |
| Network | mainnet |
| 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:
getblockchaininfodoes not carry it, but block decodes includechainlock: trueonce 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.