✨ Perpetual Exchange is live
Swap Any Token
Across Any Chain
Clypto is the next-generation cross-chain DeFi aggregation exchange,
enabling seamless swaps across 16+ blockchains and 6,000+ tokens
with best rates, deep liquidity, and built-in referral rewards.
Convert with Clypto
Swap any token across any chain instantly.
BTC to ETH
Convert Bitcoin to Ethereum with best rates across 16+ chains.
ETH to SOL
Convert Ethereum to Solana with best rates across 16+ chains.
SOL to XRP
Convert Solana to XRP with best rates across 16+ chains.
XRP to BTC
Convert XRP to Bitcoin with best rates across 16+ chains.
BNB to ETH
Convert BNB to Ethereum with best rates across 16+ chains.
AVAX to BTC
Convert Avalanche to Bitcoin with best rates across 16+ chains.
DOGE to ETH
Convert Dogecoin to Ethereum with best rates across 16+ chains.
RUNE to BTC
Convert THORChain to Bitcoin with best rates across 16+ chains.
ETH to XRP
Convert Ethereum to XRP with best rates across 16+ chains.
BTC to SOL
Convert Bitcoin to Solana with best rates across 16+ chains.
SOL to BNB
Convert Solana to BNB with best rates across 16+ chains.
XRP to AVAX
Convert XRP to Avalanche with best rates across 16+ chains.
Trade Perpetuals onDEX

200+ Trading Pairs
Access the widest selection of perpetual trading pairs
Up to 100x Leverage
Maximize opportunities with advanced risk controls.
Low Fees
Transparent, fair fees for every trade
Self-custody
Keep your keys, keep your coins. No CEX risk
Decentralized
Trade without KYC.
Cross-Chain Support
Trade assets across multiple blockchains
What Makes Clypto Unique?
16+ Blockchains Supported
Seamlessly swap across EVMs, Bitcoin, Solana, and more — all from one API.
6,000+ Tokens Available
Deep multi-chain liquidity at your fingertips.
Smart Routing Engine
Optimized paths from top DEXs and bridges for the best execution.
Fast API Response Time
Ultra-fast quote and swap responses for performance-critical apps.
Built-In Referral Rewards
Monetize every transaction with flexible fee sharing.
Enterprise-Ready Uptime
99.99% availability across global infrastructure.
Why Choose Clypto?
Swap Smarter. Build Faster. Earn More.
Cross-Chain at Its Core
Seamlessly swap assets across Bitcoin, Ethereum, Solana, Dogecoin, Litecoin and beyond.
Security-First, Non-Custodial
You stay in full control of your funds — always.
Smart Aggregation Engine
Real-time optimization across top DEXs and bridges.
Earn with Every Integration
Developers and partners can set referral fees and share in swap volume.

Fast, Clean UI
Intuitive interface backed by high-performance infrastructure.
import { ClyptoApi } from '@clypto/api-sdk';
const apiKey = 'your-api-key';
const clypto = new ClyptoApi(apiKey);
// Get supported chains
const chains = await clypto.getChains();
// Get tokens for a specific provider, or a chain
const tokens = await api.getTokens({ provider: 'thorchain' });
// Get a quote
const quote = await api.getQuote({
srcChain: 'bitcoin',
srcToken: '',
destChain: '1', // USDC on ethereum
destToken: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
amount: '100000000', // 1 $btc
slippageBps: 150,
referrer: 'address',
referralFeeBps: 25, // 0.25%
});
// Get a swap transaction
const swap = await clypto.getSwap({
srcChain: 'bitcoin',
srcToken: '',
destChain: '1', // USDC on ethereum
destToken: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
srcAddress: 'bc...', // btc wallet address
destAddress: '0x...', // eth wallet address
amount: '100000000', // 1 $btc
slippageBps: 150,
referrer: 'address',
referralFeeBps: 25, // 0.25%
});

