Crypto Wallets
CRYMBO Connect offers a powerful wallet management system that supports multi-currency, multi-chain wallets including BTC, ETH, USDC, and more.
This system allows institutions to securely create, fund, monitor, and manage wallets via API.
🔧 Key Features
- Hot & cold wallet support
- Multi-sig wallet configuration (m-of-n)
- Deposit address generation
- Secure unlocking with passphrase or OTP
- Single & batch transfers
- Real-time webhooks
- Balance & transaction history access
📥 Create a Wallet
Endpoint:
POST /wallets/tbtc
Payload:
{
"walletPassphrase": "my-secure-passphrase",
"label": "My Trading Wallet",
"type": "hot",
"m": 2,
"n": 3
}
Creates a 2-of-3 multisig hot wallet for Bitcoin Testnet.
➕ Generate a Deposit Address
Endpoint:
POST /wallets/tbtc/wallet/:wallet_id/address
Generates a new blockchain address under the wallet.
🔁 Transfer Funds
Endpoint:
POST /wallets/tbtc/wallet/:wallet_id/transfer
Transfers funds from the wallet.
Note: Wallet must be unlocked before sending.
Unlock Wallet First:
POST /wallets/unlock
📦 Batch Transfers
Endpoint:
POST /wallets/tbtc/wallet/:wallet_id/transferMany
Allows sending multiple transfers in one request.
📊 Wallet Info & Transfers
Endpoints:
GET /wallets/tbtc/wallet/:wallet_id
GET /wallets/tbtc/wallet/:wallet_id/transfers
Returns wallet metadata, balance, and transaction history.
📣 Webhooks
Endpoint:
POST /wallets/tbtc/wallet/:wallet_id/webhooks
Subscribe to events like transfer
, deposit
, or address activity
.