BDET Exchange is a sovereign indigenous exchange platform. Partners, allied banks, and other exchanges can connect via our REST API to:
https://api.futurebdetbank.com/v2curl https://api.futurebdetbank.com/v2/health
curl https://api.futurebdetbank.com/v2/constants
curl https://api.futurebdetbank.com/v2/tickers
Response: { "wmp-wusd": {"last": 0.054, "volume": 720000, ...}, ... }
BDET uses HMAC-SHA256 for private API. Same scheme as HollaEx so existing libraries work.
Required headers:
api-key — your BDET API keyapi-signature — HMAC-SHA256 of ${METHOD}${PATH}${api-expires}${BODY}api-expires — Unix timestamp when request expires// 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
More private endpoints (orders, deposits, withdrawals) rolling out Q3 2026.
| Symbol | Name | Type | Est. Price |
|---|---|---|---|
| WMP | Wampum Sovereign | Native mining | $0.054 |
| IGCM | INKG Gold-backed Coin Mining | Gold-backed | $8.05 |
| sIGCM | Staked IGCM | Yield-bearing | $8.13 |
| IGT | INKG Governance Token | DAO governance | $0.20 |
| sWMP | Staked Wampum | 12.4% APY | $0.078 |
| WUSD | Wampum USD Stablecoin | 1:1 stablecoin | $1.00 |
| WAMPUM | Wampum Original | Ceremonial | $2.56 |
| BHEMP | BitcoinHemp Agricultural RWA | RWA | $0.91 |
Want to run BDET-powered exchange under your sovereign nation's brand? Partner with us:
api.yournation.bank)Contact: [email protected]