# Fetch bitcoin accounts Lists the bitcoin accounts for the user. Each bitcoin account has a separate balance. Every bitcoin transaction (withdrawal, deposit, trade, bonus payout) affects the balance of exactly one bitcoin account. Endpoint: GET /v1/user/bitcoin-accounts Version: 0.0.1 Security: apiKey ## Query parameters: - `includeDeleted` (boolean) Include accounts that have previously been deleted. ## Response 200 fields (application/json): - `accounts` (array) - `accounts.id` (string) - `accounts.availableBtc` (number) The current BTC holdings that can be used for trading or withdrawals. - `accounts.totalBtc` (number) The BTC balance of the account. - `accounts.totalNok` (number) The NOK value of the BTC of the account, at the time of the request. - `accounts.name` (string) The name of the account. - `accounts.createTime` (string) When this account was created. - `accounts.deleteTime` (string) When this account was deleted. Empty if the account is not deleted. - `totalBtc` (number) The total BTC balance of all accounts. - `totalNok` (number) The total NOK value of the BTC of all accounts, at the time of the request.