# Tatum Blockchain Gateway **Official Documentation:** https://docs.tatum.io The following interfaces are available on this chain: - `bitcoin-testnet-rest` (rest) - `bitcoin-testnet-json-rpc` (jsonrpc) ## bitcoin-testnet-rest - rest All API endpoints are relative to the following base URL: `https://bitcoin-testnet.gateway.tatum.io/rest` The following is a curated list of supported REST API endpoints. Please refer to the official documentation for details on path parameters, query parameters, and request bodies. - `GET /block/notxdetails/{block-hash}` - `GET /block/{block-hash}` - `GET /blockhashbyheight/{height}` - `GET /chaininfo.json` - `GET /getutxos/checkmempool/{outpoint}/{outpoint}/.../{outpoint}` - `GET /getutxos/{outpoint}/{outpoint}/.../{outpoint}` - `GET /headers/{block-hash}` - `GET /headers/{count}/{block-hash}` - `GET /mempool/contents.json` - `GET /mempool/info.json` - `GET /tx/{tx-hash}` ## bitcoin-testnet-json-rpc - jsonrpc The primary endpoint for making API calls is: `https://bitcoin-testnet.gateway.tatum.io` The following is a curated list of supported JSON-RPC methods. Please refer to the official documentation for details on required parameters. - `createrawtransaction` - `decoderawtransaction` - `decodescript` - `estimatefee` - `estimatesmartfee` - `getbestblockhash` - `getblock` - `getblockchaininfo` - `getblockcount` - `getblockhash` - `getblockheader` - `getblockstats` - `getchaintips` - `getdifficulty` - `getmempoolancestors` - `getmempoolcluster` - `getmempooldescendants` - `getmempoolentry` - `getmempoolfeeratediagram` - `getmempoolinfo` - `getnetworkinfo` - `getrawmempool` - `getrawtransaction` - `gettxout` - `gettxoutproof` - `searchrawtransactions` - `sendrawtransaction` - `testmempoolaccept` - `validateaddress` - `verifymessage` - `verifytxoutproof`