Bitcoind Rest API

Request data from Bitcoind through rest api endpoints.

☠️⚠️ Work In Progress ⚠️☠️

Install

Add package to Cargo.toml file

shell $ cargo install bitcoind-rest-api

Setup:

Must have these environment variable set for the terminal to work. Could go in your .zshrc or .bashrc:

shell export BITCOIND_PASSWORD="..." export BITCOIND_USERNAME="..." export BITCOIND_URL="127.0.0.1:8332"

Start Server

To start server at the default host and port of 127.0.0.1:3030, run:

shell $ bitcoind-rest-api

To start server at a specified port, pass the PORT argument

shell $ bitcoind-rest-api 3031

Could optionally pass the environment variable to the script:

shell BITCOIND_PASSWORD=... BITCOIND_USERNAME=...BITCOIND_URL=... bitcoin-terminal-dashboard

Endpoints

The endpoints used should map directly to rpc commands and parameters, where the command name is the url path and the arguments are query params. If a rpc argument is optional, then the query param is also optional - and same for required arguments. For example, the getchaintxstats command takes two arguments, nblocks and blockhash, so the url path to request the same information would be localhost:3030/api/v1/getchaintxstats?nblocks={...}&blockhash={...}

The following endpoints have been implemented:


getblockcount

GET /api/v1/getblockcount


getblockstats

GET /api/v1/getblockstats?hash_or_height={blockhash or height}


getchaintxstats

GET /api/v1/getchaintxstats?n_blocks={nblocks}&blockhash={blockhash}


getdifficutly

GET /api/v1/getdifficutly


getnetworkhashps

GET /api/v1/getnetworkhashps?n_blocks={nblocks}&height={height}


gettxoutsetinfo

Not: This will take a few seconds (or longer) to return

GET /api/v1/gettxoutsetinfo?hash_type={hash_type}


getblockhash

GET /api/v1/getblockhash?height={height}


getblock

GET /api/v1/getblock?blockhash={blockhash}&verbosity={verbosity}


Related

License

MIT © Joe Gesualdo