> For the complete documentation index, see [llms.txt](https://liquiidio.gitbook.io/unity-plugin-suite/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://liquiidio.gitbook.io/unity-plugin-suite/hyperion/examples/accountsclient/accountsclientexample3.md).

# AccountsClientExample3

```csharp
public async Task AccountsClientExample3()
{
    var accountsClient = new AccountsClient(new HttpHandler());

    // Request all Accounts that are controlled by an individual Account
    var tokens = await accountsClient.GetTokensAsync(account: "someaccount", cancellationToken: CancellationToken.None);

    // Print the Account Name of the Token Owner
    Console.WriteLine(tokens.Account);

    foreach (var token in tokens.Tokens)
    {
        // Print all Tokens
        Console.WriteLine($"{token.Amount}{token.Symbol} of contract {token.Contract} with precision {token.Precision}");
    }
}
```
