BTC/USD67,842.50+2.41%|
ETH/USD3,521.18+1.83%|
XAU/USD2,341.70-0.22%|
EUR/USD1.0842+0.14%|
BNB/USD598.40+3.12%|
SOL/USD174.92-1.05%|
GBP/USD1.2671+0.08%|
XRP/USD0.6218+5.73%|
USD/JPY157.34-0.31%|
ADA/USD0.4581+2.09%|
BTC/USD67,842.50+2.41%|
ETH/USD3,521.18+1.83%|
XAU/USD2,341.70-0.22%|
EUR/USD1.0842+0.14%|
BNB/USD598.40+3.12%|
SOL/USD174.92-1.05%|
GBP/USD1.2671+0.08%|
XRP/USD0.6218+5.73%|
USD/JPY157.34-0.31%|
ADA/USD0.4581+2.09%|
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/markets
GET/v1/ticker/:symbol
GET/v1/orderbook/:symbol
POST/v1/orders
DELETE/v1/orders/:id
GET/v1/account/balance
GET/v1/account/trades
WSwss://ws.tradefames.com/v1

Quick Start

Official SDK libraries to get you trading algorithmically in minutes.

Pythonpip install tradefames
from tradefames import Client
client = Client(api_key="YOUR_KEY", api_secret="YOUR_SECRET")
ticker = client.get_ticker("BTC/USDT")
print(ticker["price"])
Node.jsnpm install @tradefames/sdk
const { 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"