Crypto Wallet Unified
Crypto Wallet Unified provides a powerful and modular set of APIs to interact with multiple blockchain networks. The SDK abstracts complex blockchain operations such as wallet derivation, transaction building, and real-time tracking into easy-to-use methods across supported coins and networks.
Crypto Wallet Unified endpoints
| Method | Endpoint | Description |
|---|---|---|
| Wallets | ||
| GET |
/wallets/supported-coins /wallets/supported-coins |
Returns a list of supported cryptocurrency coins for the specified network |
| POST |
/wallets/transfer /wallets/transfer |
Complete cryptocurrency transfer from one address to another. This endpoint combines create, sign, and broadcast operations in one step. **Process Flow:** 1. Creates unsigned… |
| POST |
/wallets/stake/delegate /wallets/stake/delegate |
Stake cryptocurrency to a validator or staking pool for earning rewards. This endpoint supports various proof-of-stake cryptocurrencies with delegation capabilities. **Process… |
| POST |
/wallets/transactions/address /wallets/transactions/address |
Retrieve paginated transaction history for a specific cryptocurrency wallet address. This endpoint provides a simplified interface that only requires the wallet address,… |
| POST |
/wallets/transactions/txid /wallets/transactions/txid |
Check status and details for a single cryptocurrency transaction by its transaction ID. **Process Flow**: 1. Validates all input parameters including transaction ID format 2.… |
| POST |
/wallets/estimate-fee /wallets/estimate-fee |
Estimate the fee for a cryptocurrency transaction. This endpoint requires source and destination addresses to calculate accurate fees. The fee estimation is based on current… |
| POST |
/wallets/mnemonic/validate /wallets/mnemonic/validate |
Validates whether a mnemonic phrase is valid according to BIP39 standard |
| POST |
/wallets/balance /wallets/balance |
Check balance for a specific cryptocurrency wallet address on the specified network. |
| POST |
/wallets/mnemonic/generate /wallets/mnemonic/generate |
Generates a new BIP39 mnemonic phrase for wallet creation with configurable word count (12 or 24 words) |
| POST |
/wallets/swap/transfer /wallets/swap/transfer |
**Supported Networks**: mainnet, testnet **Supported Currencies**: BTC, ETH, XRP, XLM, TRX, LTC, BCH, DOGE **Fee Rates**: Can be specified as string ("low", "medium", "high") or… |
| POST |
/wallets/broadcast-transaction /wallets/broadcast-transaction |
Broadcasts a signed transaction to the blockchain network. This endpoint takes a transaction hash or raw transaction data and submits it to the specified cryptocurrency network.… |
| POST |
/wallets/validate-address /wallets/validate-address |
Validates if an address is valid for a specific cryptocurrency on a given network. Optionally accepts a mnemonic for wallet initialization context. |
| POST |
/wallets/sign-transaction /wallets/sign-transaction |
Signs a transaction with the provided private key and transaction parameters. This endpoint creates and signs a transaction in one step, ready for broadcasting to the blockchain… |
| POST |
/wallets /wallets |
Create one or multiple cryptocurrency wallets from the same mnemonic. |
| Crypto Prices | ||
| GET |
/crypto/status /crypto/status |
Monitor the operational status of all connected cryptocurrency exchanges. **Features:** - Real-time exchange status monitoring - API rate limit information - Maintenance schedule… |
| GET |
/crypto/symbols /crypto/symbols |
Retrieve a comprehensive list of supported cryptocurrency trading symbols across all connected exchanges. **Features:** - Complete symbol inventory from all exchanges -… |
| GET |
/crypto/historical/{symbol} /crypto/historical/{symbol} |
Retrieve historical OHLCV (Open, High, Low, Close, Volume) data for technical analysis and charting applications. **Features:** - Multiple timeframes (1m to 1d) - Configurable… |
| POST |
/crypto/cache/clear /crypto/cache/clear |
Clear the internal price cache to force fresh data retrieval from exchanges. **Use Cases:** - Force refresh of stale data - Clear cache after maintenance - Reset cache during… |
| GET |
/crypto/multi-price/{symbol} /crypto/multi-price/{symbol} |
Compare prices across multiple cryptocurrency exchanges to find the best rates and analyze market spreads. **Features:** - Aggregated price data from multiple exchanges - Best… |
| GET |
/crypto/cache/stats /crypto/cache/stats |
Retrieve detailed statistics about the internal price cache performance and current state. **Information Provided:** - Cache size and memory usage - Hit rate and performance… |
| GET |
/crypto/price/{symbol} /crypto/price/{symbol} |
Retrieve real-time price data for a specific cryptocurrency trading pair. **Features:** - Support for multiple exchanges - Real-time price updates with caching - Comprehensive… |
| Other endpoints | ||
| GET |
/crypto/historical/{symbol} /crypto/historical/{symbol} |
Retrieve historical OHLCV (Open, High, Low, Close, Volume) data for technical analysis and charting applications. **Features:** - Multiple timeframes (1m to 1d) - Configurable… |
| GET |
/crypto/symbols /crypto/symbols |
Retrieve a comprehensive list of supported cryptocurrency trading symbols across all connected exchanges. **Features:** - Complete symbol inventory from all exchanges -… |
| GET |
/crypto/price/{symbol} /crypto/price/{symbol} |
Retrieve real-time price data for a specific cryptocurrency trading pair. **Features:** - Support for multiple exchanges - Real-time price updates with caching - Comprehensive… |
| GET |
/crypto/multi-price/{symbol} /crypto/multi-price/{symbol} |
Compare prices across multiple cryptocurrency exchanges to find the best rates and analyze market spreads. **Features:** - Aggregated price data from multiple exchanges - Best… |
| POST |
/crypto/cache/clear /crypto/cache/clear |
Clear the internal price cache to force fresh data retrieval from exchanges. **Use Cases:** - Force refresh of stale data - Clear cache after maintenance - Reset cache during… |
| GET |
/crypto/status /crypto/status |
Monitor the operational status of all connected cryptocurrency exchanges. **Features:** - Real-time exchange status monitoring - API rate limit information - Maintenance schedule… |
| GET |
/crypto/cache/stats /crypto/cache/stats |
Retrieve detailed statistics about the internal price cache performance and current state. **Information Provided:** - Cache size and memory usage - Hit rate and performance… |
| POST |
/wallets/validate-address /wallets/validate-address |
Validates if an address is valid for a specific cryptocurrency on a given network. Optionally accepts a mnemonic for wallet initialization context. |
| POST |
/wallets/balance /wallets/balance |
Check balance for one or multiple cryptocurrency wallets from the same mnemonic. Uses the same parameters as wallet creation. |
| POST |
/wallets/mnemonic/generate /wallets/mnemonic/generate |
Generates a new BIP39 mnemonic phrase for wallet creation with configurable word count (12, 15, 18, 21, or 24 words) |
| POST |
/wallets/estimate-fee /wallets/estimate-fee |
Estimate the fee for a cryptocurrency transaction. This endpoint provides a fee estimation without requiring destination address. It uses the provided mnemonic and defaults to… |
| POST |
/wallets /wallets |
Create one or multiple cryptocurrency wallets from the same mnemonic. Always requires an array of currencies. |
| POST |
/wallets/transactions/history /wallets/transactions/history |
Retrieve paginated transaction history for a specific cryptocurrency wallet address |
| POST |
/wallets/mnemonic/validate /wallets/mnemonic/validate |
Validates whether a mnemonic phrase is valid according to BIP39 standard |
| POST |
/wallets/create-transaction /wallets/create-transaction |
Creates an unsigned transaction for cryptocurrency transfer. This is the first step in the transaction process. **Security Notice**: This endpoint requires a mnemonic phrase.… |
| POST |
/wallets/sign-transaction /wallets/sign-transaction |
Signs an unsigned transaction with the wallet's private key. This is the second step in the transaction process after creating an unsigned transaction. **Security Note**: This… |
| POST |
/wallets/broadcast-transaction /wallets/broadcast-transaction |
Broadcasts a signed transaction to the blockchain network. This is the final step in the transaction process. **Security Notice**: This endpoint requires a mnemonic phrase for… |
| POST |
/wallets/transactions/check /wallets/transactions/check |
Check status and details for multiple cryptocurrency transactions by their transaction IDs. **Security Notice**: This endpoint requires a mnemonic phrase. Ensure you're using… |
| GET |
/wallets/supported-coins /wallets/supported-coins |
Returns a list of supported cryptocurrency coins for the specified network |
| POST |
/wallets/transfer /wallets/transfer |
Complete cryptocurrency transfer from one address to another. This endpoint combines create, sign, and broadcast operations in one step. **Process Flow:** 1. Creates unsigned… |
| GET |
/crypto/status /crypto/status |
Monitor the operational status of all connected cryptocurrency exchanges. **Features:** - Real-time exchange status monitoring - API rate limit information - Maintenance schedule… |
| GET |
/crypto/multi-price/{symbol} /crypto/multi-price/{symbol} |
Compare prices across multiple cryptocurrency exchanges to find the best rates and analyze market spreads. **Features:** - Aggregated price data from multiple exchanges - Best… |
| GET |
/crypto/cache/stats /crypto/cache/stats |
Retrieve detailed statistics about the internal price cache performance and current state. **Information Provided:** - Cache size and memory usage - Hit rate and performance… |
| POST |
/crypto/cache/clear /crypto/cache/clear |
Clear the internal price cache to force fresh data retrieval from exchanges. **Use Cases:** - Force refresh of stale data - Clear cache after maintenance - Reset cache during… |
| GET |
/crypto/symbols /crypto/symbols |
Retrieve a comprehensive list of supported cryptocurrency trading symbols across all connected exchanges. **Features:** - Complete symbol inventory from all exchanges -… |
| GET |
/crypto/price/{symbol} /crypto/price/{symbol} |
Retrieve real-time price data for a specific cryptocurrency trading pair. **Features:** - Support for multiple exchanges - Real-time price updates with caching - Comprehensive… |
| GET |
/crypto/historical/{symbol} /crypto/historical/{symbol} |
Retrieve historical OHLCV (Open, High, Low, Close, Volume) data for technical analysis and charting applications. **Features:** - Multiple timeframes (1m to 1d) - Configurable… |
| POST |
/wallets/transfer /wallets/transfer |
Complete cryptocurrency transfer from one address to another. This endpoint combines create, sign, and broadcast operations in one step. **Process Flow:** 1. Creates unsigned… |
| POST |
/wallets/estimate-fee /wallets/estimate-fee |
Estimate the fee for a cryptocurrency transaction. This endpoint provides a fee estimation without requiring destination address. It uses the provided mnemonic and defaults to… |
Crypto Wallet Unified pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO | $35 / month | 100 / second |
|
| ULTRA Recommended | $80 / month | 250 / second |
|
| MEGA | $250 / month | 500 / second |
|