> ## 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.

# Get Account Info

Easily get the main info of any account by passing in the account's Public Key.

```kotlin theme={null}
    // Wrap the callback in a suspendable way (like a suspendCoroutine)
    val result = Altude.getAccountInfo()
```

```kotlin theme={null}
    val option = GetAccountInfoOption(
        account = "YourAccountPublicKeyHere" // Public key of the account you want to query,            
    )
    
    // Wrap the callback in a suspendable way (like a suspendCoroutine)
    val result = Altude.getAccountInfo(option)
```
