API for interacting with Bare Bitcoin. Most endpoints require authentication. Create API keys here. Read about API authentication here.
URL https://barebitcoin.no
E-mail barebitcoin@bb.no
curl -i -X GET \
https://api.bb.no/v1/ledger \
-H 'x-bb-api-hmac: YOUR_API_KEY_HERE' \
-H 'x-bb-api-key: YOUR_API_KEY_HERE' \
-H 'x-bb-api-nonce: YOUR_API_KEY_HERE'
{ "entries": [ { … } ] }
curl -i -X GET \
'https://api.bb.no/v1/ledger/{accountId}' \
-H 'x-bb-api-hmac: YOUR_API_KEY_HERE' \
-H 'x-bb-api-key: YOUR_API_KEY_HERE' \
-H 'x-bb-api-nonce: YOUR_API_KEY_HERE'