🔌 BDET EXCHANGE API

Sovereign Whitelabel Exchange · Connect to BDET
IERAHKWA NE KANIENKE · BIC BDETINKGXXX · CHAIN 777777

Overview

BDET Exchange is a sovereign indigenous exchange platform. Partners, allied banks, and other exchanges can connect via our REST API to:

Base URL: https://api.futurebdetbank.com
Version: /v2
Compatibility: Mirrors HollaEx /v2/* spec — existing tooling works out of the box.

🔓 Public Endpoints (no auth)

GET/v2/health · Exchange info
curl https://api.futurebdetbank.com/v2/health
GET/v2/constants · All coins + pairs
curl https://api.futurebdetbank.com/v2/constants
GET/v2/tickers · Live prices for all pairs
curl https://api.futurebdetbank.com/v2/tickers
Response: { "wmp-wusd": {"last": 0.054, "volume": 720000, ...}, ... }
GET/v2/ticker?symbol=wmp-wusd · Single ticker
GET/v2/orderbook?symbol=wmp-wusd · 10 bid/ask levels
GET/v2/trades?symbol=wmp-wusd · Last 30 trades (from mining ledger)
GET/v2/chart?symbol=wmp-wusd&resolution=1D&from=X&to=Y · OHLCV candles

🔐 Authentication (HMAC-SHA256)

BDET uses HMAC-SHA256 for private API. Same scheme as HollaEx so existing libraries work.

Required headers:

// Signing example (Node.js)
const crypto = require('crypto');
const expires = Math.floor(Date.now()/1000) + 60;
const message = `GET/v2/user/balance${expires}`;
const signature = crypto.createHmac('sha256', API_SECRET).update(message).digest('hex');

fetch('https://api.futurebdetbank.com/v2/user/balance', {
  headers: {
    'api-key': API_KEY,
    'api-signature': signature,
    'api-expires': expires
  }
});

Get your API key from your BDET account: wallet.futurebdetbank.com → Security → API Keys

🔒 Private Endpoints (HMAC required)

GET/v2/user · User info + wallet address
GET/v2/user/balance · Real-time balances across all tokens

More private endpoints (orders, deposits, withdrawals) rolling out Q3 2026.

🏛 Sovereign Extensions

GET/v2/sovereign/info · BDET governance + compliance info
GET/v2/sovereign/mining-pools · Live mining stats from chain 777777

🎫 BDET Tokens Available

SymbolNameTypeEst. Price
WMPWampum SovereignNative mining$0.054
IGCMINKG Gold-backed Coin MiningGold-backed$8.05
sIGCMStaked IGCMYield-bearing$8.13
IGTINKG Governance TokenDAO governance$0.20
sWMPStaked Wampum12.4% APY$0.078
WUSDWampum USD Stablecoin1:1 stablecoin$1.00
WAMPUMWampum OriginalCeremonial$2.56
BHEMPBitcoinHemp Agricultural RWARWA$0.91

🤝 Whitelabel Partnership

Want to run BDET-powered exchange under your sovereign nation's brand? Partner with us:

Contact: [email protected]

📚 Resources