# Borrow Balance

A user who borrows assets from the protocol is subject to accumulated interest based on the current [borrow rate](https://docs.belugas.io/atokens/borrow-rate). Interest is accumulated every block and integrations may use this function to obtain the current value of a user's borrow balance with interest.

**BErc20 / CEther**

```
function borrowBalanceCurrent(address account) returns (uint)
```

* `account`: The account which borrowed the assets.
* `RETURN`: The user's current borrow balance (with interest) in units of the underlying asset.

**Solidity**

```
BErc20 bToken = BToken(0x3FDA...);
uint borrows = bToken.borrowBalanceCurrent(msg.caller);
```

**Web3 1.0**

```javascript
const bToken = CEther.at(0x3FDB...);
const borrows = await bToken.methods.borrowBalanceCurrent(account).call();
```
