> For the complete documentation index, see [llms.txt](https://srwa.gitbook.io/srwa-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://srwa.gitbook.io/srwa-docs/srwa-interface/interactive-blocks/lending/lending-account.md).

# Lending Account

Lending account section of the Lending page shows the general overview of the users current positions.

<figure><img src="/files/tik8Ij23vKBehvJXfWZG" alt=""><figcaption></figcaption></figure>

All of the fields in this section and their meaning are described below:

#### NET APR

Annual percentage rate (APR) refers to the yearly interest generated by a sum that's charged to borrowers or paid to investors. Net APR in this case is the total APR of all of the assets for the user. It can be positive or negative.  Net APR is calculated with the following formula:

`SUM[pool](user_deposit_balance * deposit APR - user_borrow_balance * borrow APR) / SUM[pool]user_deposit_balance`

#### DAILY

Represents the daily gains of the user in USD. It is calculated using the following formula:

`SUM[pool](user_deposit_balance * USD value of asset)  *  Net APR / 100 / 365`

#### DEPOSIT BALANCE&#x20;

Sum total of the users deposits represented in USD.

#### MAX LOAN LIMIT

&#x20;Sum total of loans that the user can take based on collateral and loan-to-value ratio represented in USD. It is calculated using the following formula:

`SUM[pool] (user_deposit_balance * ltv_ratio * USD value of asset)`

#### LOAN BALANCE&#x20;

Sum total of the users loans represented in USD.

#### LOAN LIMIT USED

&#x20;Percentage of max loan limit that the user borrowed represented in USD. It is calculated using the following formula:

&#x20;`SUM[pool](user_borrow_balance) / SUM[pool](user_deposit_balance * ltv_ratio) * 100`

<br>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://srwa.gitbook.io/srwa-docs/srwa-interface/interactive-blocks/lending/lending-account.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
