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

# ApiClient fee methods

> Retrieve and claim CoinVoyage organization fee balances with signed ApiClient methods.

Fee operations require your API secret and must run on the server.

| Method                         | Purpose                                                  |
| ------------------------------ | -------------------------------------------------------- |
| `getFeeBalances(apiSecret)`    | Retrieves claimable fee balances for your organization.  |
| `claimFees(params, apiSecret)` | Claims accrued fees to a recipient currency and address. |

```typescript theme={null}
const { data, error } = await apiClient.getFeeBalances(
  process.env.COIN_VOYAGE_API_SECRET!
);
```
