Exchange API
Integrate account-free swaps into your wallet, bot, or storefront. Request an API key over Telegram — no KYC for integrators either.
Base URL · https://api.vortan.exchange
GET
/v1/currenciesList every supported asset with its network and minimum swap amount.
{
"currencies": [
{ "symbol": "BTC", "network": "bitcoin", "min": 0.0005 },
{ "symbol": "ETH", "network": "ethereum", "min": 0.01 }
]
}GET
/v1/rate?from=BTC&to=ETH&amount=0.1Get a live estimated rate for a pair and amount.
{
"from": "BTC",
"to": "ETH",
"amount": 0.1,
"estimate": 2.4137,
"fee_pct": 0.5
}POST
/v1/exchangeCreate an exchange and receive a deposit address.
{
"id": "VX7K2M9QD4",
"deposit_address": "bc1q...",
"status": "awaiting_deposit",
"expires_at": "2026-07-31T06:00:00Z"
}GET
/v1/exchange/{id}Poll the status of an exchange: awaiting_deposit, confirming, exchanging, sending, done.
{
"id": "VX7K2M9QD4",
"status": "confirming",
"confirmations": 1
}