# Doge Documentation > Dogecoin L1. Bitcoin-compatible JSON-RPC. - [Quicknode Doge RPC Overview](https://www.quicknode.com/docs/doge.md): Get started with Doge RPC on Quicknode. Access reliable, low-latency blockchain infrastructure with globally distributed endpoints for seamless development. ## Blockbook API - [Blockbook API Overview](https://www.quicknode.com/docs/doge/blockbook/overview.md): Learn how to access the Blockbook API on Quicknode for Dogecoin, supporting both REST and JSON-RPC interfaces. ## Blockbook API — REST API - [GET /api/v2/address/{address} - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-address.md): Returns balances and transactions of a Dogecoin address via the Blockbook REST API. - [GET /api/v2/balancehistory/{address} - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-balancehistory.md): Returns the balance history for a Dogecoin address via the Blockbook REST API. - [GET /api/v2/block-index/{blockHeight} - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-block-index.md): Returns the block hash for a given block height via the Blockbook REST API. - [GET /api/v2/block/{blockHash} - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-block.md): Returns block data including transactions for a Dogecoin block via the Blockbook REST API. - [GET /api/v2/tx/{txid} - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-tx.md): Returns the transaction object for a given transaction hash via the Blockbook REST API. - [GET /api/v2/tx-specific/{txid} - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-tx-specific.md): Returns raw transaction data in the backend's native format via the Blockbook REST API. - [GET /api/v2/utxo/{addressOrXpub} - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-utxo.md): Returns unspent transaction outputs (UTXOs) for a Dogecoin address via the Blockbook REST API. - [GET /api/v2/tickers-list/ - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-tickers-list.md): Returns available fiat currency rate tickers for a given date via the Blockbook REST API. - [GET /api/v2/tickers/ - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-tickers.md): Returns fiat currency exchange rates for a given date via the Blockbook REST API. - [GET /api/v2/estimatefee/{blocks} - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-estimatefee.md): Returns the estimated transaction fee for a target confirmation window. On UTXO chains this is a fee rate per kilobyte; on EVM chains it is the suggested gas price. - [GET /api/v2/multi-tickers/ - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-multi-tickers.md): Returns exchange rates (fiat and crypto) for one or more timestamps in a single request. - [GET /api/v2/rawblock/{block_id} - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-rawblock.md): Returns the raw, hex-encoded serialized data for a block, specified by height or hash. - [GET /api/v2/feestats/{block_id} - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-feestats.md): Returns fee statistics for a block, including transaction count, total fees, average fee per kilobyte, and the fee-per-kilobyte distribution by decile. - [GET /api/v2/xpub/{xpub} - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-xpub.md): Returns balances and transactions for an XPUB or output descriptor via the Blockbook REST API. - [POST /api/v2/sendtx/ - Blockbook REST API](https://www.quicknode.com/docs/doge/api-v2-sendtx.md): Broadcasts a signed raw transaction to the Dogecoin network via the Blockbook REST API. ## Blockbook API — RPC API - [bb_getAddress RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_getaddress.md): Get balances and transactions of a given Dogecoin address. - [bb_getBalanceHistory RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_getbalancehistory.md): Returns a balance history for the specified XPUB or address. - [bb_getBlock RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_getblock.md): Returns information about the block with transaction objects. - [bb_getBlockHash RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_getblockhash.md): Returns the hash of the block at the given height. - [bb_getTickers RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_gettickers.md): Returns currency rate for the specified currency and date. If the currency is not available for that specific timestamp, the next closest rate will be returned. All responses contain an actual rate timestamp. - [bb_getEstimateFee RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_getestimatefee.md): Returns the estimated transaction fee for a target confirmation window. On UTXO chains this is a fee rate per kilobyte; on EVM chains it is the suggested gas price. - [bb_getMultiTickers RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_getmultitickers.md): Returns exchange rates (fiat and crypto) for one or more timestamps in a single request. - [bb_getRawBlock RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_getrawblock.md): Returns the raw, hex-encoded serialized data for a block, specified by height or hash. - [bb_getFeeStats RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_getfeestats.md): Returns fee statistics for a block, including transaction count, total fees, average fee per kilobyte, and the fee-per-kilobyte distribution by decile. - [bb_getTickersList RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_gettickerslist.md): Returns a list of available currency rate tickers (secondary currencies) for the specified date, along with an actual data timestamp. - [bb_getTx RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_gettx.md): Returns transaction object for the transaction hash. - [bb_getTxSpecific RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_gettxspecific.md): Returns transaction data in the exact format as returned by backend, including all coin specific fields. - [bb_getUTXOs RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_getutxos.md): Get all of the unspent transaction outputs for a given address or xpub. - [bb_sendTransaction RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_sendtransaction.md): Broadcasts a signed raw transaction to the Dogecoin network via the Blockbook JSON-RPC interface and returns the transaction hash. - [bb_getXPUB RPC Method - Blockbook](https://www.quicknode.com/docs/doge/bb_getxpub.md): Get balances and transactions of an xpub or output descriptor.