Developer API
Build with the TradeFames API
Full REST and WebSocket API for algorithmic trading, bots, portfolio tools, and custom integrations. Rate limits start at 1,200 requests/minute.
80+
REST Endpoints
12
WebSocket Streams
99.9%
API Uptime SLA
<5ms
Avg Latency
API Reference
Base URL: https://api.tradefames.com
GET
/v1/marketsGET
/v1/ticker/:symbolGET
/v1/orderbook/:symbolPOST
/v1/ordersDELETE
/v1/orders/:idGET
/v1/account/balanceGET
/v1/account/tradesWS
wss://ws.tradefames.com/v1Quick Start
Official SDK libraries to get you trading algorithmically in minutes.
Python
pip install tradefamesfrom tradefames import Client
client = Client(api_key="YOUR_KEY", api_secret="YOUR_SECRET")
ticker = client.get_ticker("BTC/USDT")
print(ticker["price"])Node.js
npm install @tradefames/sdkconst { TradeFames } = require('@tradefames/sdk');
const client = new TradeFames({ apiKey: 'YOUR_KEY', apiSecret: 'YOUR_SECRET' });
const ticker = await client.getTicker('BTC/USDT');
console.log(ticker.price);cURL
curl -X GET "https://api.tradefames.com/v1/ticker/BTC-USDT" \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json"