REST, WebSocket and FIX 4.4 APIs for institutional-grade trading, custody and OTC block execution.
Signed REST endpoints for account, orders, balances and transfers. HMAC-SHA256 auth on a canonical request. Sub-second latency from Singapore.
Real-time order-book deltas, trades, tickers and private account streams. Binary and JSON frames, automatic reconnection with sequence numbers.
Industry-standard FIX 4.4 gateway for algorithmic and institutional flow. Logon with ApiKey/HMAC, drop-copy session available on request.
Programmatic RFQ flow for block trades. Request → quote → accept, with TTL enforcement, multi-venue aggregation and automatic settlement.
Authenticate with an API key, sign each request, fire it at our Singapore edge.
curl -H "X-API-Key: $KEY" \
-H "X-Signature: $SIG" \
-H "X-Timestamp: $TS" \
https://api.bitwyre.com/v1/balancesfrom bitwyre import Client
c = Client(key=KEY, secret=SECRET)
order = c.place_order(
symbol="BTC_USDT",
side="Buy",
price="65432.10",
quantity="0.25",
)let client = Bitwyre::new(&key, &secret);
let order = client
.place_order("BTC_USDT", Side::Buy, "65432.10", "0.25")
.await?;Grab an API key from your account and start trading in minutes.