# AccountsClientExample1

```csharp
public async Task AccountsClientExample1()
{
    // Instantiate an AccountsClient
    var accountsClient = new AccountsClient(new HttpHandler());

    // Call the GetAccountAsync-Endpoint to retreive Account-related Data
    var getAccountsResult = await accountsClient.GetAccountAsync(account: "someacount",limit: 10, skip: 10, cancellationToken: CancellationToken.None);

    Console.WriteLine(getAccountsResult.Account);

    foreach (var action in getAccountsResult.Actions)
    {
        // Print diverse Information about the individual Actions received to the Console
        Console.WriteLine(action.Act.Account);
        Console.WriteLine(action.Act.Name);
        Console.WriteLine(action.ActionOrdinal);
        Console.WriteLine(action.BlockNum);
        Console.WriteLine(action.CpuUsageUs);
        Console.WriteLine(action.CreatorActionOrdinal);
        Console.WriteLine(action.GlobalSequence);
        Console.WriteLine(action.NetUsageWords);
        Console.WriteLine(action.Parent);
        Console.WriteLine(action.Notified);
        Console.WriteLine(action.Producer);
        Console.WriteLine(action.Receiver);
        Console.WriteLine(action.TrxId);
        
        // Print information about all Notified Accounts to the Console
        foreach (var notified in action.Notified)
        {
            Console.WriteLine(notified);
        }
        // Print information about all AccountRamDeltas to the Console
        foreach (var accountRamDelta in action.AccountRamDeltas)
        {
            Console.WriteLine(accountRamDelta.Account);
            Console.WriteLine(accountRamDelta.Delta);
        }
    }
}
```


---

# 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://liquiidio.gitbook.io/unity-plugin-suite/hyperion/examples/accountsclient/accountsclientexample1.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.
