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

# Multi-Currency Wallets

Manage wallets in multiple currencies to support global operations. This guide covers creating and managing wallets across different currencies.

## Multi-Currency Support

Platnova supports wallets in multiple currencies, allowing you to:

* Operate in different markets
* Hold funds in local currencies
* Avoid currency conversion fees
* Simplify multi-currency operations

## Supported Currencies

Wallets are available in various currencies including:

* **USD** - US Dollar
* **NGN** - Nigerian Naira
* And other supported currencies

Check available currencies for your account through the API.

## Listing Wallets

View all your wallets:

```bash theme={null}
curl -X GET https://api.platnova.com/v1/wallets \
  -H "X-API-KEY: YOUR_API_KEY"
```

## Wallet Response

```json theme={null}
{
  "status": true,
  "data": [
    {
      "id": "wallet_123",
      "currency": "USD",
      "balance": "10000.00",
      "status": "active",
      "created_at": "2025-01-01T00:00:00Z"
    },
    {
      "id": "wallet_456",
      "currency": "NGN",
      "balance": "5000000.00",
      "status": "active",
      "created_at": "2025-01-01T00:00:00Z"
    }
  ]
}
```

## Wallet Operations

### Funding Wallets

Fund wallets through various methods:

* Bank transfers
* Card deposits
* Payment receipts
* Other payment methods

### Using Wallets

Wallets serve as the source of funds for:

* Card creation and funding
* Payment sending
* Other financial operations

## Currency-Specific Operations

### USD Wallets

* Create USD cards
* Send USD payments
* Receive USD payments
* Process USD transactions

### NGN Wallets

* Create NGN cards
* Send NGN payments
* Receive NGN payments
* Process NGN transactions

## Wallet Balance Management

### Checking Balances

Monitor balances across all wallets:

```bash theme={null}
curl -X GET https://api.platnova.com/v1/wallets \
  -H "X-API-KEY: YOUR_API_KEY"
```

### Balance Tracking

* View current balances
* Track balance changes
* Monitor transaction history
* Set up balance alerts

## Best Practices

* Create wallets in currencies you need
* Monitor balances regularly
* Keep sufficient balances for operations
* Track currency-specific transactions
* Plan for currency conversion when needed

## Next Steps

* Learn about [Wallet Management](/wallets/management) for wallet operations
* Explore the [Wallets API Reference](/api-reference/wallets/list) for detailed documentation
