๐ Doozy Exchange Integration Guide
This guide explains how to integrate doozycrypto.com with doozy.exchange for seamless cryptocurrency trading.
โ
USVI Licensed Exchange: Doozy Exchange operates under a U.S. Virgin Islands banking license, providing regulatory compliance for US customers.
๐ Quick Start
Add this script to your doozycrypto.com pages:
<script src="https://doozy.exchange/connect-from-doozycrypto.js"></script>
๐ Method 1: HTML Data Attributes (Recommended)
The easiest way to integrate - just add data attributes to your existing buttons:
Sell Button Example:
<button
data-doozy-action="sell"
data-doozy-asset="BTC"
data-doozy-amount="0.5"
data-doozy-user="user123"
class="sell-crypto-btn">
Sell Bitcoin on Doozy Exchange
</button>
Buy Button Example:
<button
data-doozy-action="buy"
data-doozy-asset="ETH"
data-doozy-amount="2.0"
data-doozy-user="user123"
class="buy-crypto-btn">
Buy Ethereum on Doozy Exchange
</button>
Data Attribute Reference:
Attribute |
Required |
Description |
Example |
data-doozy-action |
โ
Yes |
Trading action |
"buy" or "sell" |
data-doozy-asset |
โ No |
Crypto asset symbol |
"BTC", "ETH", "SOL", etc. |
data-doozy-amount |
โ No |
Amount to trade |
"0.5", "1000" |
data-doozy-user |
โ No |
User identifier |
"user123" |
โก Method 2: JavaScript API
For more control, use the JavaScript API directly:
// Simple connection
DoozyExchange.connect({
action: 'sell',
asset: 'BTC',
amount: '0.5',
userId: 'user123'
});
// Enhanced connection with API tracking
DoozyExchange.connectAPI({
action: 'sell',
asset: 'BTC',
amount: '0.5',
userId: 'user123',
referenceId: 'transaction_abc123'
});
๐ฏ Supported Cryptocurrencies
Symbol |
Name |
Status |
BTC | Bitcoin | โ
Active |
ETH | Ethereum | โ
Active |
SOL | Solana | โ
Active |
DOGE | Dogecoin | โ
Active |
XRP | XRP | โ
Active |
XLM | Stellar | โ
Active |
SHIB | SHIBA Inu | โ
Active |
๐ Security & Compliance
- USVI Banking License: Full regulatory compliance
- KYC/AML: Comprehensive identity verification
- Cold Storage: 98% of assets stored offline
- Multi-Signature: Enhanced wallet security
๐งช Live Demo
Test the integration with these demo buttons:
โ ๏ธ Note: This is a demo environment. In production, ensure proper user authentication and session management.
๐ Support
For integration support, contact our development team:
Connecting to Doozy Exchange...