VORTANContact

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/currencies

List 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.1

Get 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/exchange

Create 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
}
Need an API key?

Message us on Telegram and we'll get you set up.

@vortanexchange