# Fees (APR)

The protocol recalculates the put option premium daily, which becomes a borrower's accrued fee. We use the Black-Scholes Formula for this calculation.

### APR % Breakdown

Below are the calculations for approximate APRs users would pay based on their loan-to-value ratio (risk).&#x20;

| Loan-to-Value (LTV) | APR (Yearly) |
| :-----------------: | :----------: |
|         15%         |     \~1%     |
|         30%         |    \~16.5%   |
|         50%         |     \~76%    |

Below are the inputs we currently use for the calculation. You can find all of our deployed contracts here, look for "PremiumPricer."

<table><thead><tr><th width="328.3333333333333">Input Variable</th><th>Value</th></tr></thead><tbody><tr><td>S (Current NFT Average Floor)</td><td>Average NFT Floor Price</td></tr><tr><td>K (Strike or Borrow Amount)</td><td>Your Borrowed Amount</td></tr><tr><td><em>σ</em> (Volatility)</td><td>225%</td></tr><tr><td>r (risk-free rate)</td><td>8%</td></tr><tr><td>t (time to expiration)</td><td>1 month</td></tr></tbody></table>

All the complexities of the put options are entirely abstracted from the user. They see a standard APR for their loan.

{% hint style="info" %}
The Black Scholes Pricing Model creates a system that incentivizes healthier borrowing, in other words, those who have low Loan-To-Value loans pay significantly less than high Loan-To-Value. This safeguards our protocol from onboarding too much risk.
{% endhint %}


---

# Agent Instructions: 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:

```
GET https://docs.anylend.org/protocol/fees-apr.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
