Build powerful trading applications with our comprehensive REST API and WebSocket feeds. Access real-time market data, execute trades, and manage your portfolio programmatically.
Our API is designed with developers in mind, offering reliability, performance, and ease of use.
Sub-millisecond response times with 99.9% uptime guarantee
Bank-level security with comprehensive rate limiting and monitoring
Worldwide availability with regional endpoints for optimal performance
Live market data, WebSocket support, and streaming capabilities
Comprehensive API endpoints for all your trading needs.
/api/v1/market/ticker/{symbol}Get current ticker data
/api/v1/market/depth/{symbol}Get order book depth
/api/v1/market/trades/{symbol}Get recent trades
/api/v1/market/klines/{symbol}Get candlestick data
/api/v1/orderPlace a new order
/api/v1/order/{orderId}Get order status
/api/v1/order/{orderId}Cancel an order
/api/v1/ordersGet all orders
/api/v1/accountGet account information
/api/v1/account/balanceGet account balance
/api/v1/account/tradesGet trade history
/api/v1/account/depositsGet deposit history
Get started quickly with our official SDKs for popular programming languages.
npm install @trade-im/sdkimport { TradeIM } from '@trade-im/sdk';
const client = new TradeIM({
apiKey: 'your-api-key',
apiSecret: 'your-api-secret'
});
const ticker = await client.getTicker('BTCUSDT');
console.log(ticker);pip install trade-imfrom trade_im import TradeIM
client = TradeIM(
api_key='your-api-key',
api_secret='your-api-secret'
)
ticker = client.get_ticker('BTCUSDT')
print(ticker)go get github.com/trade-im/go-sdkimport "github.com/trade-im/go-sdk"
client := tradeim.NewClient(
"your-api-key",
"your-api-secret",
)
ticker, err := client.GetTicker("BTCUSDT")
if err != nil {
log.Fatal(err)
}
fmt.Println(ticker)Choose the right tier for your application's needs.
| Tier | API Requests | WebSocket | Priority |
|---|---|---|---|
| Free | 100/hour | 5 connections | Standard |
| Professional | 10,000/hour | 50 connections | High |
| Enterprise | Unlimited | Unlimited | Premium |
Get your API keys and start building powerful trading applications today.