API for interacting with Bare Bitcoin. Most endpoints require authentication. Create API keys here. Read about API authentication here.
curl -i -X GET \
https://api.bb.no/v1/user/bitcoin-accounts \
-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'
{ "accounts": [ { … } ] }
curl -i -X GET \
https://api.bb.no/v1/user/fiat-account \
-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'
{ "availableNok": 0.1, "pendingOrdersNok": 0.1 }