> For the complete documentation index, see [llms.txt](https://docs-old.telematicssdk.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-old.telematicssdk.com/sdk-installation/ios-sdk-intallation/add-statistics-data-to-your-viewcontroller.md).

# Add statistics data to your ViewController

You need to perform async request to get user statistics:

```
- (void)loadData {    
    [[RPEntry instance].api getStatisticsMainWithCompletion:^(id response, NSError *error) {
        if (error != nil) {
            return;
        }
        
        if (![response isKindOfClass:[RPStatistics class]]) {
            return;
        }
  /// Implement updating your ViewController with new data        
    }];
}
```
