Mainnet · Public · Free
TrumPOW API Server
Public REST API for the TrumPOW blockchain. Query blocks, transactions, balances, search anything, and broadcast — no auth required.
Blockchain
GET/info▼
Returns current info about the TrumPOW network including block height, difficulty, and chain stats.
GEThttps://api.trumpow.meme/info
GET/height/int:height▼
Returns full block info by block height.
height
GEThttps://api.trumpow.meme/height/1
GET/block/string:hash▼
Returns full block info by block hash.
hash
GEThttps://api.trumpow.meme/block/1e489ba35fb1ff3d342245d333667ea74696e73c94a5ff90e1e937aa249aee1d
GET/range/int:height▼
Returns 10 consecutive blocks starting from the given height.
height
GEThttps://api.trumpow.meme/range/1
Network
GET/stats▼
Returns a combined snapshot: block height, supply, difficulty, hashrate, mempool size, and peer count.
GEThttps://api.trumpow.meme/stats
GET/peers▼
Returns list of connected network peers with their IP, version, and sync status.
GEThttps://api.trumpow.meme/peers
GET/mempool▼
Returns all transactions currently in the mempool.
GEThttps://api.trumpow.meme/mempool
GET/supply▼
Returns the current circulating supply of TrumPOW ($TRMP).
GEThttps://api.trumpow.meme/supply
GET/fee▼
Returns the estimated smart fee for 6-block confirmation.
GEThttps://api.trumpow.meme/fee
Address
GET/validate/string:address▼
Validates a TrumPOW address and returns its type and script info.
address
GEThttps://api.trumpow.meme/validate/
GET/balance/string:address▼
Returns confirmed and unconfirmed balance for the given address.
address
GEThttps://api.trumpow.meme/balance/
GET/unspent/string:address▼
Returns unspent outputs (UTXOs) for the given address.
address
GEThttps://api.trumpow.meme/unspent/
GET/history/string:address▼
Returns all transaction IDs for the given address.
address
GEThttps://api.trumpow.meme/history/
GET/mempool/string:address▼
Returns pending mempool transactions for the given address.
address
GEThttps://api.trumpow.meme/mempool/
Transactions
GET/transaction/string:txid▼
Returns decoded transaction info by txid.
txid
GEThttps://api.trumpow.meme/transaction/
GET/search/string:query▼
Smart search — auto-detects whether the query is a block height, block hash, tx hash, or address and returns the right result.
query
GEThttps://api.trumpow.meme/search/
GET/decode/string:raw▼
Decodes a raw transaction hex and returns its contents.
raw
GEThttps://api.trumpow.meme/decode/
POST/broadcast▼
Broadcasts a raw signed transaction to the TrumPOW network. Body: {"raw":"<hex>"}
raw
POSThttps://api.trumpow.meme/broadcast