# Direct calls

**Redeem lvlUSD for USDC:**

* LevelMinting contract: [0x9136aB0294986267b71BeED86A75eeb3336d09E1](https://etherscan.io/address/0x9136aB0294986267b71BeED86A75eeb3336d09E1)
* First, call `initiateRedeem()` with the following variables:
  * `asset (address)`: the collateral asset to redeem for. Use USDC's Ethereum Mainnet address `(0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48)`
  * `lvlUsdAmount (uint256)`: the amount of `lvlUSD` to redeem. `lvlUSD` is an 18-decimal token
  * `minAssetAmount (uint256)`: the minimum amount of collateral to receive back, to the collateral's precision. For example, to receive back $1 in USDC, input `1e6`&#x20;
* Two seconds later, call `completeRedeem()` with the following variables:
  * `asset (address)`: the desired collateral asset. Must be the same address you inputted when calling `initiateRedeem()`.&#x20;
  * `beneficiary (address)`: the address to receive the collateral asset
* *Note: if you call `initiateRedeem()` twice, you will restart the cooldown period*


---

# 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://level-money.gitbook.io/level-documentation/user-guides/interacting-with-level-contracts/direct-calls.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.
