> For the complete documentation index, see [llms.txt](https://docs.airship.gg/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.airship.gg/platform-services/users.md).

# Users

User information such as friends and profile data are made available to both the server and client. You can access the User API using `Platform.Server.User` and `Platform.Client.User`.

## Common Patterns

```typescript
// Get a users friends
// List of objects containing user data such as username and status text.
const friends = await Platform.client.user.GetFriends();
```
