> 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/statsclientexample.md).

# StatsClientExample

```csharp
public async Task StatsClientExample()
{
    var statsClient = new StatsClient(new HttpHandler());

    // Query information about missed Blocks by Producers
    var producerstats = await statsClient.GetMissedBlocksAsync(producer: "someproducer");

    foreach (var producerstatsEvent in producerstats.Events)
    {
        Console.WriteLine(producerstatsEvent.LastBlock);
        Console.WriteLine(producerstatsEvent.Producer);
        Console.WriteLine(producerstatsEvent.ScheduleVersion);
        Console.WriteLine(producerstatsEvent.Size);
        Console.WriteLine(producerstatsEvent.Timestamp);
    }
}
```
