Base URL

http://explorer.dogecoinev.com/api

Blocks

GET /blocks

10 newest blocks. Add /:start_height for blocks starting at height.

curl http://explorer.dogecoinev.com/api/blocks
GET /blocks/tip/height

Current block height.

curl http://explorer.dogecoinev.com/api/blocks/tip/height
GET /blocks/tip/hash

Current block hash.

curl http://explorer.dogecoinev.com/api/blocks/tip/hash
GET /block/:hash

Block info by hash.

curl http://explorer.dogecoinev.com/api/block/<hash>
GET /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
GET /block-height/:height

Block hash at given height.

curl http://explorer.dogecoinev.com/api/block-height/15800

Transactions

GET /tx/:txid

Transaction details.

curl http://explorer.dogecoinev.com/api/tx/<txid>
GET /tx/:txid/status

Transaction confirmation status.

curl http://explorer.dogecoinev.com/api/tx/<txid>/status
GET /tx/:txid/hex

Raw transaction hex.

GET /tx/:txid/outspends

Spending status of all outputs.

POST /tx

Broadcast raw transaction (hex in body).

curl -X POST http://explorer.dogecoinev.com/api/tx -d "02000000..."

Addresses

GET /address/:address

Address stats (chain_stats, mempool_stats).

curl http://explorer.dogecoinev.com/api/address/<address>
GET /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"
GET /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

GET /mempool

Mempool stats (count, vsize, total_fee, fee_histogram).

curl http://explorer.dogecoinev.com/api/mempool
GET /mempool/recent

Last 10 transactions to enter mempool.

curl http://explorer.dogecoinev.com/api/mempool/recent
GET /mempool/txids

All txids in mempool.

Fee & Supply

GET /fee-estimates

Fee estimates by confirmation target (sat/vB).

curl http://explorer.dogecoinev.com/api/fee-estimates
GET /blockchain/getsupply

Total supply (if supported by backend).

curl http://explorer.dogecoinev.com/api/blockchain/getsupply