API
Electrs REST API for DogecoinEV. All amounts in satoshis.
Base URL
http://explorer.dogecoinev.com/api
Blocks
/blocks
10 newest blocks. Add /:start_height for blocks starting at height.
curl http://explorer.dogecoinev.com/api/blocks
/blocks/tip/height
Current block height.
curl http://explorer.dogecoinev.com/api/blocks/tip/height
/blocks/tip/hash
Current block hash.
curl http://explorer.dogecoinev.com/api/blocks/tip/hash
/block/:hash
Block info by hash.
curl http://explorer.dogecoinev.com/api/block/<hash>
/block/:hash/txs/:start_index
Transactions in block (25 per page, start_index must be multiple of 25).
curl http://explorer.dogecoinev.com/api/block/<hash>/txs/0
/block-height/:height
Block hash at given height.
curl http://explorer.dogecoinev.com/api/block-height/15800
Transactions
/tx/:txid
Transaction details.
curl http://explorer.dogecoinev.com/api/tx/<txid>
/tx/:txid/status
Transaction confirmation status.
curl http://explorer.dogecoinev.com/api/tx/<txid>/status
/tx/:txid/hex
Raw transaction hex.
/tx/:txid/outspends
Spending status of all outputs.
/tx
Broadcast raw transaction (hex in body).
curl -X POST http://explorer.dogecoinev.com/api/tx -d "02000000..."
Addresses
/address/:address
Address stats (chain_stats, mempool_stats).
curl http://explorer.dogecoinev.com/api/address/<address>
/address/:address/txs
Transaction history (50 mempool + 25 confirmed). Add ?start_index=N&limit=25 for pagination.
curl "http://explorer.dogecoinev.com/api/address/<address>/txs?start_index=0&limit=25"
/address/:address/utxo
Unspent outputs. Add ?start_index=N&limit=25 for pagination.
curl "http://explorer.dogecoinev.com/api/address/<address>/utxo?start_index=0&limit=25"
Mempool
/mempool
Mempool stats (count, vsize, total_fee, fee_histogram).
curl http://explorer.dogecoinev.com/api/mempool
/mempool/recent
Last 10 transactions to enter mempool.
curl http://explorer.dogecoinev.com/api/mempool/recent
/mempool/txids
All txids in mempool.
Fee & Supply
/fee-estimates
Fee estimates by confirmation target (sat/vB).
curl http://explorer.dogecoinev.com/api/fee-estimates
/blockchain/getsupply
Total supply (if supported by backend).
curl http://explorer.dogecoinev.com/api/blockchain/getsupply