These docs are for v0.16.0. Click to read the latest docs for v19.0.0-redirect.

Quick Reference

List of Dash Core HTTP REST APIs

  • GET Block gets a block with a particular header hash from the local block database either as a JSON object or as a serialized block. Updated in Bitcoin Core 0.13.0
  • GET Block/NoTxDetails gets a block with a particular header hash from the local block database either as a JSON object or as a serialized block. The JSON object includes TXIDs for transactions within the block rather than the complete transactions GET block returns. Updated in Bitcoin Core 0.13.0
  • GET ChainInfo returns information about the current state of the block chain. Updated in Bitcoin Core 0.12.0
  • GET GetUtxos returns an UTXO set given a set of outpoints. New in Bitcoin Core 0.11.0
  • GET Headers returns a specified amount of block headers in upward direction. Updated in Bitcoin Core 0.13.0
  • GET MemPool/Contents returns all transaction in the memory pool with detailed information. New in Bitcoin Core 0.12.0
  • GET MemPool/Info returns information about the node's current transaction memory pool. New in Bitcoin Core 0.12.0
  • GET Tx gets a hex-encoded serialized transaction or a JSON object describing the transaction. By default, Dash Core only stores complete transaction data for UTXOs and your own transactions, so this method may fail on historic transactions unless you use the non-default txindex=1 in your Dash Core startup settings. Updated in Bitcoin Core 0.13.0

What’s Next