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

# Wallets

> List wallets and inspect wallet activity.

Use wallet endpoints to view balances and wallet-specific transactions.

## List wallets

`GET /v3/wallets`

Returns each wallet currency and available balance for the selected environment.

```bash theme={null}
curl https://serviceapi.sarafa.ss/v3/wallets \
  -H "x-api-key: YOUR_API_KEY" \
  -H "environment: sandbox"
```

## Get one wallet

`GET /v3/wallet/{currency}`

Use an uppercase currency code such as `USD`.

```bash theme={null}
curl https://serviceapi.sarafa.ss/v3/wallet/USD \
  -H "x-api-key: YOUR_API_KEY" \
  -H "environment: sandbox"
```

The response includes the wallet balance and related transactions.
