> ## Documentation Index
> Fetch the complete documentation index at: https://docs.relay.link/llms.txt
> Use this file to discover all available pages before exploring further.

# getAppFees

> Retrieve app fee balances for a specific wallet

[What are app fees?](/features/app-fees)

## Parameters

| Property   | Description                                      | Required |
| ---------- | ------------------------------------------------ | -------- |
| **wallet** | The wallet address to fetch app fee balances for | ✅        |

## Example

```typescript theme={null}
import { getClient } from "@relayprotocol/relay-sdk";

const wallet = "0x..."; // Replace with your wallet address

const balances = await getClient().actions.getAppFees({
  wallet,
});

```
