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/price/nok?amount=0.1'
{ "price": 0.1, "bid": 0.1, "ask": 0.1, "timestamp": "2019-08-24T14:15:22Z", "card": { "buy": 0.1, "sell": 0.1 }, "bank": { "buy": 0.1, "sell": 0.1 } }
curl -i -X GET \
'https://api.bb.no/v1/volume?date=string'
{ "daily": { "amountNok": 0.1, "amountBtc": 0.1, "buyPercentage": 0.1 }, "monthly": { "amountNok": 0.1, "amountBtc": 0.1, "buyPercentage": 0.1 }, "yearly": { "amountNok": 0.1, "amountBtc": 0.1, "buyPercentage": 0.1 } }