Fintrusted
Api

API Documentation

REST + WebSocket reference

API Documentation

Build trading applications with our REST & WebSocket APIs

Low Latency

Sub-millisecond order execution via co-located servers

Secure

HMAC-SHA256 signed requests, IP whitelisting, permission scoping

Rate Limits

1200 requests/min for REST, unlimited WebSocket subscriptions

SDKs

Official libraries for Python, Node.js, Java, and Go

API Key Management

Create, edit, and manage your API keys and permissions

Market Data

Public endpoints for tickers, order books, trades, and klines. No authentication required.

GET/market/data/quotations/home
GET/market/data/quotations/coin?coin=btc
GET/market/data/quotations/sparklines
GET/market/convert/price?fromUnit=BTC&toUnit=USDT

Spot Trading

Authenticated endpoints for placing, cancelling, and listing spot orders.

POST/tx/spot/add
POST/tx/spot/cancel
GET/tx/spot/symbol-thumb-v2

Futures Trading

Perpetual swap contract trading and position management.

POST/tx/uorder/open
POST/tx/uorder/close
GET/tx/uorder/list

Wallet / Account

Balances, deposits, withdrawals, and user profile. Requires Authorization header.

GET/uc/asset/spot-wallets
GET/uc/asset/futures-wallets
POST/uc/user-info
POST/uc/referral/count

WebSocket API

Real-time streaming for market data, order updates, and account events.

WShttps://fintrusted.com
SUBdepth.{symbol}
SUBtrades.{symbol}
SUBticker.{symbol}
SUBkline.{symbol}.{interval}

Quick Start

# Public: 24h ticker for a coin (no auth)
curl "https://fintrusted.com/market/data/quotations/coin?coin=btc"

# Authenticated: log in and capture the JWT from data.Authorization
TOKEN=$(curl -s -X POST https://fintrusted.com/uc/v2/login \
  -d "[email protected]&password=secret" \
  | jq -r .data.Authorization)

# Place a spot LIMIT buy — type=0 limit, type=1 market, direction=0 BUY, 1 SELL
curl -X POST "https://fintrusted.com/tx/spot/add" \
  -H "Authorization: $TOKEN" \
  -d "symbol=BTC/USDT&direction=0&type=0&price=74000&amount=0.001"

# Spot wallet balances
curl -H "Authorization: $TOKEN" \
  "https://fintrusted.com/uc/asset/spot-wallets"