Interface to access Bitcoin mainet
, testnet
, signet
APIs.
- Addresses
- Assets
- Blocks
- Difficulty
- Fees
- Mempool
- Transactions
- Websocket
Returns details about an address. Available fields: address
, chain_stats
, and mempool_stats
. {chain,mempool}\_stats
each contain an object with tx_count
, funded_txo_count
, funded_txo_sum
, spent_txo_count
, and spent_txo_sum
.
Parameters:
- {string} address
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { addresses },
} = mempoolJS();
const address = '1wizSAYSbuyXbt9d8JV8ytm5acqq2TorC';
const myAddress = await addresses.getAddress({ address });
console.log(myAddress);
Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid
.
Parameters:
- {string} address
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { addresses },
} = mempoolJS();
const address = '1wizSAYSbuyXbt9d8JV8ytm5acqq2TorC';
const addressTxs = await addresses.getAddressTxs({ address });
console.log(addressTxs);
Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query.
Parameters:
- {string} address
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { addresses },
} = mempoolJS();
const address = '1wizSAYSbuyXbt9d8JV8ytm5acqq2TorC';
const addressTxsChain = await addresses.getAddressTxsChain({ address });
console.log(addressTxsChain);
Get unconfirmed transaction history for the specified address/scripthash
. Returns up to 50 transactions (no paging).
Parameters:
- {string} address
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { addresses },
} = mempoolJS();
const address = '1wizSAYSbuyXbt9d8JV8ytm5acqq2TorC';
const addressTxsMempool = await addresses.getAddressTxsMempool({ address });
console.log(addressTxsMempool);
Get the list of unspent transaction outputs associated with the address/scripthash
. Available fields: txid
, vout
, value
, and status
(with the status of the funding tx).
Parameters:
- {string} address
[ NodeJS Example ] [ HTML Example ] [ Top ]
const { addresses } = mempoolJS();
const addressTxsUtxo = await addresses.getAddressTxsUtxo('15e10745f15593a...');
console.log(addressTxsUtxo);
Returns details about a block. Available fields: id
, height
, version
, timestamp
, bits
, nonce
, merkle_root
, tx_count
, size
, weight
, and previousblockhash
.
Parameters:
- {string} hash
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { blocks },
} = mempoolJS();
const hash = '000000000000000015dc777b3ff2611091336355d3f0ee9766a2cf3be8e4b1ce';
const block = await blocks.getBlock({ hash });
console.log(block);
Returns the confirmation status of a block. Available fields: in_best_chain
(boolean, false for orphaned blocks), next_best
(the hash of the next block, only available for blocks in the best chain).
Parameters:
- {string} hash
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { blocks },
} = mempoolJS();
const hash = '000000000000000015dc777b3ff2611091336355d3f0ee9766a2cf3be8e4b1ce';
const blockStatus = await blocks.getBlockStatus({ hash });
console.log(blockStatus);
Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status.
Parameters:
- {string} params.hash
- {number} params.start_index
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { blocks },
} = mempoolJS();
const hash = '000000000000000015dc777b3ff2611091336355d3f0ee9766a2cf3be8e4b1ce';
const blockTxs = await blocks.getBlockTxs({ hash });
console.log(blockTxs);
Returns a list of all txids in the block.
Parameters:
- {string} hash
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { blocks },
} = mempoolJS();
const hash = '000000000000000015dc777b3ff2611091336355d3f0ee9766a2cf3be8e4b1ce';
const blockTxids = await blocks.getBlockTxids({ hash });
console.log(blockTxids);
Returns the transaction at index :index within the specified block.
Parameters:
- {string} params.hash
- {number} params.index
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { blocks },
} = mempoolJS();
const hash = '000000000000000015dc777b3ff2611091336355d3f0ee9766a2cf3be8e4b1ce';
const blockTxid = await blocks.getBlockTxid({ hash, index: 218 });
console.log(blockTxid);
Returns the raw block representation in binary.
Parameters:
- {string} hash
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { blocks },
} = mempoolJS();
const hash = '000000000000000015dc777b3ff2611091336355d3f0ee9766a2cf3be8e4b1ce';
const blockRaw = await blocks.getBlockRaw({ hash });
console.log(blockRaw);
Returns the hex-encoded block header.
Parameters:
- {string} hash
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { blocks },
} = mempoolJS();
const blockHeader = await blocks.getBlockHeader({ hash: '0000000000000000000065bda8f8a88f2e1e00d9a6887a43d640e52a4c7660f2' });
console.log(blockHeader);
Returns the hash of the block currently at :height
.
Parameters:
- {number} height
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { blocks },
} = mempoolJS();
const blockHeight = await blocks.getBlockHeight({ height: 0 });
console.log(blockHeight);
Returns the 10 newest blocks starting at the tip or at :start_height
if specified.
Parameters:
- {number} params.start_height
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { blocks },
} = mempoolJS();
const getBlocks = await blocks.getBlocks({ start_height: 9999 });
console.log(getBlocks);
Returns the 10 newest blocks starting at the tip or at :start_height
if specified.
Parameters:
- {number} params.start_height
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { blocks },
} = mempoolJS();
const blocksTipHeight = await blocks.getBlocksTipHeight();
console.log(blocksTipHeight);
Returns the hash of the last block.
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { blocks },
} = mempoolJS();
const blocksTipHash = await blocks.getBlocksTipHash();
console.log(blocksTipHash);
Returns the hash of the last block.
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { difficulty },
} = mempoolJS();
const difficultyAdjustment = await difficulty.getDifficultyAdjustment();
console.log(difficultyAdjustment);
Returns our currently suggested fees for new transactions.
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { fees },
} = mempoolJS();
const feesRecommended = await fees.getFeesRecommended();
console.log(feesRecommended);
Returns current mempool as projected blocks.
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { fees },
} = mempoolJS();
const feesMempoolBlocks = await fees.getFeesMempoolBlocks();
console.log(feesMempoolBlocks);
Returns current mempool as projected blocks.
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { fees },
} = mempoolJS();
const txid = 'txid';
const feesCPFP = await fees.getCPFP({ txid });
console.log(feesCPFP);
Returns current mempool backlog statistics.
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { mempool },
} = mempoolJS();
const getMempool = await mempool.getMempool();
console.log(getMempool);
Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid
, fee
, vsize
, and value
.
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { mempool },
} = mempoolJS();
const getMempoolRecent = await mempool.getMempoolRecent();
console.log(getMempoolRecent);
Get the full list of txids in the mempool as an array. The order of the txids
is arbitrary and does not match bitcoind.
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { mempool },
} = mempoolJS();
const getMempoolTxids = await mempool.getMempoolTxids();
console.log(getMempoolTxids);
Returns details about a transaction. Available fields: txid
, version
, locktime
, size
, weight
, fee
, vin
, vout
, and status
.
Parameters:
- {string} txid
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { transactions },
} = mempoolJS();
const txid = '15e10745f15593a899cef391191bdd3d7c12412cc4696b7bcb669d0feadc8521';
const tx = await transactions.getTx({ txid });
console.log(tx);
Returns the confirmation status of a transaction. Available fields: confirmed
(boolean), block_height
(optional), and block_hash
(optional).
Parameters:
- {string} txid
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { transactions },
} = mempoolJS();
const txid = '15e10745f15593a899cef391191bdd3d7c12412cc4696b7bcb669d0feadc8521';
const txStatus = await transactions.getTxStatus({ txid });
console.log(txStatus);
Returns a transaction serialized as hex.
Parameters:
- {string} txid
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { transactions },
} = mempoolJS();
const txid = '15e10745f15593a899cef391191bdd3d7c12412cc4696b7bcb669d0feadc8521';
const txHex = await transactions.getTxHex({ txid });
console.log(txHex);
Returns a transaction as binary data.
Parameters:
- {string} txid
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { transactions },
} = mempoolJS();
const txid = '15e10745f15593a899cef391191bdd3d7c12412cc4696b7bcb669d0feadc8521';
const txRaw = await transactions.getTxRaw({ txid });
console.log(txRaw);
Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format.
Parameters:
- {string} txid
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { transactions },
} = mempoolJS();
const txid = '15e10745f15593a899cef391191bdd3d7c12412cc4696b7bcb669d0feadc8521';
const txMerkleBlockProof = await transactions.getTxMerkleBlockProof({ txid });
console.log(txMerkleBlockProof);
Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format.
Parameters:
- {string} txid
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { transactions },
} = mempoolJS();
const txid = '15e10745f15593a899cef391191bdd3d7c12412cc4696b7bcb669d0feadc8521';
const txMerkleProof = await transactions.getTxMerkleProof({ txid });
console.log(txMerkleProof);
Returns the spending status of a transaction output. Available fields: spent
(boolean), txid
(optional), vin
(optional), and status
(optional, the status of the spending tx).
Parameters:
- {string} params.txid
- {number} params.vout
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { transactions },
} = mempoolJS();
const txid = '15e10745f15593a899cef391191bdd3d7c12412cc4696b7bcb669d0feadc8521';
const txOutspend = await transactions.getTxOutspend({
txid,
vout: 3,
});
console.log(txOutspend);
Returns the spending status of all transaction outputs.
Parameters:
- {string} txid
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { transactions },
} = mempoolJS();
const txid = '15e10745f15593a899cef391191bdd3d7c12412cc4696b7bcb669d0feadc8521';
const txOutspends = await transactions.getTxOutspends({ txid });
console.log(txOutspends);
Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid
will be returned on success.
Parameters:
- {string} txhex
[ NodeJS Example ] [ HTML Example ] [ Top ]
const {
bitcoin: { transactions },
} = mempoolJS();
const txhex = '15e10745f15593a899cef391191bdd3d7c12412cc4696b7bcb669d0feadc8521';
const postTx = await transactions.postTx({ txhex });
console.log(postTx);
Default push: { action: 'want', data: ['blocks', ...] }
to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.
Push transactions related to address: { 'track-address': '3PbJ...bF9B' }
to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions.
[ NodeJS Example ] [ HTML Example ] [ Top ]
Only use on server side apps.
const { bitcoin: { websocket } } = mempoolJS();
const init = async () => {
const ws = websocket.initServer({
options: ["blocks", "stats", "mempool-blocks", "live-2h-chart"],
});
ws.on("message", function incoming(data) {
const res = JSON.parse(data.toString());
if (res.block) {
console.log(res.block);
}
if (res.mempoolInfo) {
console.log(res.mempoolInfo);
}
if (res.transactions) {
console.log(res.transactions);
}
if (res.mempoolBlocks) {
console.log(res.mempoolBlocks);
}
});
}
init();
Only use on browser apps.
const init = async () => {
const {
bitcoin: { websocket },
} = mempoolJS();
const ws = websocket.initClient({
options: ['blocks', 'stats', 'mempool-blocks', 'live-2h-chart'],
});
ws.addEventListener('message', function incoming({data}) {
const res = JSON.parse(data.toString());
if (res.block) {
console.log(res.block);
}
if (res.mempoolInfo) {
console.log(res.mempoolInfo);
}
if (res.transactions) {
console.log(res.transactions);
}
if (res.mempoolBlocks) {
console.log(res.mempoolBlocks);
}
});
};
init();