# ProfileService

Lifetime player statistics.

```java
ProfileService profiles = api.getProfileService();
profiles.getStats(player).thenAccept(stats -> {
    int wins = stats.getWins();
    double kd = stats.getKDRatio();
});
```

**Methods:**

* `getStats(player)` – async PlayerStats
* `getCachedStats(player)` – sync, for UI
