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

# List Wallet Profiles

> GET /v1/wallet-profiles — List wallet profiles for your organization

<Note>
  **Endpoint:** `GET https://api.rebelfi.io/v1/wallet-profiles`
</Note>

List all wallet profiles for your organization.

### Example Request

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://api.rebelfi.io/v1/wallet-profiles" \
    -H "x-api-key: your_api_key"
  ```

  ```typescript SDK theme={null}
  const { walletProfiles } = await client.walletProfiles.list();
  ```
</CodeGroup>

### Example Response

```json theme={null}
{
  "walletProfiles": [
    {
      "id": 1,
      "name": "Production",
      "isEnabled": true,
      "enabledChains": ["solana", "ethereum", "base"],
      "walletCount": 1250
    },
    {
      "id": 2,
      "name": "Staging",
      "isEnabled": true,
      "enabledChains": ["solana"],
      "walletCount": 50
    }
  ]
}
```

### Response Fields

| Field            | Type              | Description             |
| ---------------- | ----------------- | ----------------------- |
| `walletProfiles` | `WalletProfile[]` | List of wallet profiles |

### WalletProfile Object

| Field           | Type       | Description                                  |
| --------------- | ---------- | -------------------------------------------- |
| `id`            | `number`   | Wallet profile identifier                    |
| `name`          | `string`   | Profile name                                 |
| `isEnabled`     | `boolean`  | Whether the profile is currently enabled     |
| `enabledChains` | `string[]` | Blockchain networks enabled for this profile |
| `walletCount`   | `number`   | Number of wallets assigned to this profile   |
