List Wallets

Retrieve a list of all wallets associated with your account.

Endpoint

GET /api/wallets

Query Parameters

ParameterTypeRequiredDescription
pageintegerNoPage number (default: 1)
limitintegerNoNumber of items per page (default: 20)
currencystringNoFilter by currency

Response

Returns a list of wallet objects.
{
  "data": [
    {
      "id": "wallet_123456789",
      "currency": "USD",
      "balance": 1500.00,
      "available_balance": 1400.00,
      "reserved_balance": 100.00,
      "status": "active",
      "created_at": "2023-01-01T00:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 1
  }
}