Bitcoin
Bitcoin
Bitcoin
Free tier covers personal projects. Pay-as-you-go scales without a card.
getmininginfo is a Bitcoin Core JSON-RPC method that summarizes the current state of the Proof-of-Work network as seen by the node — the engine that mints BTC and extends the chain roughly every ten minutes. A single call returns the tip block height, the current difficulty, an estimate of total network hashes per second, the number of transactions waiting in the mempool, and which chain (main or test) the node is on. Send it to the read-only endpoint at https://bitcoin.therpc.io/YOUR_API_KEY to pull mining-related blockchain state without running your own full node.
difficulty and the estimated networkhashps together in one round trip instead of stitching several calls.pooledtx, the count of transactions sitting in the node's mempool, to gauge backlog and fee pressure.This method takes no parameters. Pass an empty array [].
| Type | Description |
|---|---|
| object | blocks, currentblockweight, currentblocktx, difficulty, networkhashps, pooledtx, chain, warnings. |
networkhashps field here is a single point estimate over Bitcoin Core's default block window. For a specific averaging window or a historical height, call getnetworkhashps directly and pass nblocks.pooledtx reflects only this provider node's mempool view; another node may hold a slightly different set of unconfirmed transactions.