Secure CEX to DEX transfers with OAuth2
Transfer funds from CEX to
Aggregated API layer for seamless fund transfers from centralized exchanges to decentralized finance.
OAuth2 authentication included, TOTP 2FA support, and API key fallback for maximum exchanges coverage.
import {createClient} from '@bluvo/sdk-ts'
// Opens Coinbase OAuth2 sign-in page
// Waits for user to sign in and authorize access
const {accessToken} = await client
.oauth2
.signIn('coinbase');
// Initiate the withdrawal
const { workflowRunId } = await client
.wallet
.transaction
.withdraw({
sourceExchange: 'coinbase',
sourceExchangeOAuth2Token: accessToken,
amount: 15, // Amount to withdraw
asset: 'USDT', // Asset symbol (e.g., 'BTC', 'LTC')
destinationAddress: RECEPIENT_ADDRESS, // Recipient on-chain address
});
CEX Integration
Connect to exchanges with OAuth2 or API Keys for secure fund transfers.
[2023-12-15 14:23:45] SYNC
Syncing data from OKX exchange...
[2023-12-15 14:23:47] ACTION
User placed a buy order on Bitmex.
[2023-12-15 14:23:50] HISTORICAL
Transfer completed 0.5ETH from Binance to 0x71C...
[2023-12-15 14:23:52] WARNING
2FA verification failed for Crypto.com account.
[2023-12-15 14:23:55] ERROR
Order canceled due to insufficient funds.
Transfer Tracking
Monitor CEX to DEX transfers with real-time status updates.
Universal DEX Support
Transfer to any DEX protocol across multiple blockchains.
Pricing
FAQ
Learn about OAuth2 vs API Keys for CEX to DEX transfers and which authentication method fits your use case.
Unlock transfers from 15 CEXs with a single API call.