Chain RPC

Bitcoin Node RPC

Leverage the Bitcoin RPC API to seamlessly interact with the BTC blockchain for sending transactions, fetching balances, retrieving block data, and integrating with Bitcoin’s decentralized ledger.

Mainnet Endpoint Links

JSON-RPC
https://api.chain-rpc.online/bitcoin
Index
https://api.chain-rpc.online/bitcoin-index

Our platform supports all original Bitcoin JSON-RPC methods, except Wallet RPCs.

Example

curl https://api.chain-rpc.online/bitcoin \
  -X POST -H "Content-Type: application/json" \
  -H "X-API-Key: test" \
  -d '{ "jsonrpc": "2.0", "id": 1,
    "method": "getblockchaininfo",
    "params": []
}'

Refferences
Bitcoin JSON-RPC Documentation


Enhanced Usability with Indexed Methods

In addition to the standard JSON-RPC methods, our service offers a small set of specialized indexed methods designed to enhance usability and streamline data retrieval. By leveraging an index node, users can efficiently query Bitcoin balances and transaction histories directly by address. This eliminates the need for complex manual aggregation or blockchain scanning.

Our indexing capability simplifies interactions with the Bitcoin network, allowing developers to access critical account data with ease. This approach improves performance and reduces the overhead typically associated with raw blockchain queries.

The following example demonstrates how to query a Bitcoin address using our indexed method:

curl https://api.chain-rpc.online/bitcoin-index/address/34rng4QwB5pHUbGDJw1JxjLwgEU8TQuEqv \
-H "X-API-Key: test"
Method NameShort Description
block/$HASHReturns the details of the block with the given hash
block/$HEIGHTReturns the details of the block at the given height
block/header/$HASHReturns the details of the block header with the given hash
block/header/$HEIGHTReturns the details of the block header at the given height
blocks/tipReturns basic details about the chain tip
tx/$TXIDReturns the details of the transaction with the given txid
tx/volume/24hReturns the total output of all transactions over the last 24 hours
blockchain/coinsReturns the current supply of Bitcoin. Includes estimated values on slower devices or before UTXO Set snapshot is loaded
blockchain/utxo-setReturns the latest UTXO Set snapshot. Warning: Can be very slow depending on hardware and index configurations
blockchain/next-halvingReturns details about the next, upcoming Bitcoin halving
address/$ADDRESSReturns a summary of data related to the given address, including transactions if an Address API is configured
xyzpub/$XPUBReturns details for the specified extended public key, including related keys and addresses
xyzpub/addresses/$XPUBReturns a list of addresses derived from the given extended public key
xyzpub/txids/$XPUBReturns a list of transaction IDs associated with the given extended public key
mining/hashrateReturns the network hash rate estimated over various timeframes
mining/diff-adj-estimateReturns the current estimate for the next difficulty adjustment as a percentage
mining/next-blockReturns a summary of the estimated next block to be mined, based on getblocktemplate
mining/next-block/txidsReturns a list of transaction IDs included in the estimated next block to be mined
mining/next-block/includes/$TXIDReturns whether the specified transaction ID is included in the estimated next block
mining/miner-summaryProvides a summary of miner-specific activity over a specified timeframe
mempool/countReturns the number of transactions in Bitcoin Core's mempool
mempool/summaryReturns a summary of Bitcoin Core's mempool information
mempool/feesReturns recommended fee rates in sats/vB for different confirmation timeframes
priceReturns the price of 1 BTC in various currencies (USD, EUR, GBP, XAU)
price/marketcapReturns the market cap of Bitcoin in various currencies
price/satsReturns the price of 1 unit of specified currencies (e.g., USD) in satoshis
quotes/allReturns the full curated list of Bitcoin quotes
quotes/$INDEXReturns a Bitcoin quote based on the given index
quotes/randomReturns a random Bitcoin quote from the curated list
holidays/allReturns the full curated list of Bitcoin holidays
holidays/todayReturns the Bitcoin holidays celebrated on the current day
holidays/$DAYReturns the Bitcoin holidays celebrated on a specified date, in various formats (e.g., yyyy-MM-DD)
versionReturns the API version

© 2025 ChainRPC - All rights reserved