> ## Documentation Index
> Fetch the complete documentation index at: https://docs.altude.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Close Account

It's good practice to close unneeded accounts. You can only close accounts that you have created and are currently empty.

```kotlin theme={null}
val result = Altude.closeAccount()
```

or you can use the advanced version with additional options:

```kotlin theme={null}
val options = CloseAccountOption(
	account = "",   //optional
	tokens  = listOf(Token.USDC.mint())
)
val result = Altude.closeAccount(options)
```
