Cryptocurrency — entry 014 of 53
BtcTurk
BtcTurk is Turkey's largest cryptocurrency exchange, offering spot trading in TRY and USD pairs alongside a REST and WebSocket API for market data and order management. Public endpoints for tickers, order books, and trade history are keyless, while placing orders and managing accounts requires an API key pair with IP-restricted WebSocket login. The API is free to use, with separate per-endpoint rate limits on REST calls and WebSocket connections.
GreatAPIs Score
Auth quickstart
- Sign up with the provider to get an API key.
- Send it on every request as a header
Authorization: <key> - The exact header isn't documented — Authorization is a common default; confirm in the provider's docs.
Your key is stored only in this browser (localStorage) and sent directly to the API — never to greatapis.
Developer reference
Private REST endpoints (keyed), selected examples: GET /api/v1/users/balances 120 req/60s (ip); POST/DELETE /api/v1/order 300 req/60s & 10 req/1s; GET /api/v1/order/{orderId} 900 req/60s & 30 req/1s; GET /api/v1/openOrders & /api/v1/allOrders 300 req/60s; GET /api/v1/trades 90 req/60s. WebSocket: max 15 connection requests/minute, 60s block if exceeded