Every exchange.One API.
Access hundreds of centralized and decentralized perpetual markets through one unified account.
- Binance$77,000 / BTC36.8%$368,000
- Bybit$77,008 / BTC24.1%$241,000
- Hyperliquid$76,996 / BTC18.6%$186,000
- OKX$77,003 / BTC12.7%$127,000
- dYdX$77,002 / BTC7.8%$78,000
- Volume Traded
- $200B+
- Markets
- 592+
- Exchanges
- 19+
Exchange & Custody Integrations
One Account
Fund with BTC or stablecoins. Manage balances across exchanges.
Broader Liquidity
Route and split orders across centralized and decentralized exchanges.
AI Agent Connectivity
Use MCP to connect your agent to market data, positions, and orders.
Risk Management
Set take-profit, stop-loss, and reduce-only orders to manage exposure.
Adjustable Leverage
Choose leverage and cross or isolated margin, where supported.
Low-Latency API
Co-located infrastructure and dedicated connections for latency-sensitive strategies.
Market Maker Tools
Build high-frequency quoting and hedging strategies through one API.
Security & Custody
Keep eligible collateral off exchange with institutional custody and separate permissions.
curl -X POST https://api.trade8.xyz/v1/orders \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: order-request-0001' \
-H "X-Trade8-API-Key: $TRADE8_API_KEY" \
-H "X-Trade8-Timestamp: $TRADE8_TIMESTAMP" \
-H "X-Trade8-Signature: $TRADE8_SIGNATURE" \
-d '{
"account_id": "acct_example_main",
"client_order_id": "strategy-a-0001",
"instrument": "BTC-PERP",
"settlement_asset": "USDT",
"side": "buy",
"type": "limit",
"quantity": "0.100",
"limit_price": "77000.00",
"time_in_force": "GTC",
"post_only": true,
"reduce_only": false,
"routing": "auto",
"venue_policy": {
"allowed": [
"binance",
"bybit"
]
},
"self_trade_prevention": "cancel_newest"
}'from rest_client import request
order = {
"account_id": "acct_example_main",
"client_order_id": "strategy-a-0001",
"instrument": "BTC-PERP",
"settlement_asset": "USDT",
"side": "buy",
"type": "limit",
"quantity": "0.100",
"limit_price": "77000.00",
"time_in_force": "GTC",
"post_only": True,
"reduce_only": False,
"routing": "auto",
"venue_policy": {
"allowed": [
"binance",
"bybit"
]
},
"self_trade_prevention": "cancel_newest"
}
result = request('POST', '/v1/orders', order, 'order-request-0001')
print(result['order_id'])import { request } from './rest-client.mjs';
const order = {
"account_id": "acct_example_main",
"client_order_id": "strategy-a-0001",
"instrument": "BTC-PERP",
"settlement_asset": "USDT",
"side": "buy",
"type": "limit",
"quantity": "0.100",
"limit_price": "77000.00",
"time_in_force": "GTC",
"post_only": true,
"reduce_only": false,
"routing": "auto",
"venue_policy": {
"allowed": [
"binance",
"bybit"
]
},
"self_trade_prevention": "cancel_newest"
};
const result = await request(
'POST', '/v1/orders', order, 'order-request-0001'
);
console.log(result.order_id);Speak one
API language.
- REST for orders and account data
- WebSocket for live market and order updates
- MCP for AI agents
Closer to the
matching engine.
Co-location and dedicated connections shorten the path to exchanges for faster quoting and hedging.
Explore Exchange Connectivity →Exchange proximity.
Place quoting and hedging close to exchange endpoints.
Latency visibility.
Track network time, acknowledgements, and fills.
Connection recovery.
Handle reconnects, rate limits, and exchange outages.
Common Questions
Visit the Help Center →What can I trade with Trade8?
Trade crypto perpetual futures across centralized and decentralized exchanges. Available markets depend on your account and jurisdiction.
Do I need to complete KYC?
Yes. Complete personal or business verification and the required eligibility checks before trading.
How does one account work across exchanges?
Manage balances and orders in one account. Each exchange applies its own margin and collateral rules.
Are fees the same on every exchange?
Fees vary by exchange and account tier. Review trading fees, service charges, slippage, and funding together.
Where do I start?
Start with the API quickstart or the AI agent connection guide. Use Get Started to open an account.