Skip to main content

Rate Limits

  • Limit: Specifies number of requests that can be sent in period.
  • Period: Specifies period of the rule. Rate limit period starts from the first request for each endpoint.
  • Blocks: Specifies timeout time of block.
  • Policy: Specifies policy of rule. (Account based, Ip based)
  • Retry-After: When you receive 429 (Too Many Requests) response, this indicates how long you have to wait before making a new request. This information is returned from the header.
    • Example: 'Retry-After': '55' This means that you need to wait 55 seconds to make a new request.

WebSocket

WebSocket connections are limited to a maximum of 15 connection requests per minute. If this limit is exceeded, new connection requests will be temporarily blocked for 60 seconds.

info

Sending subscription requests to WebSocket channels is not counted in these limits.

EndpointsMethodLimitPeriodBlocksPolicy
Balance
/api/v1/users/balancesGET12060s60sip
Order
/api/v1/orderPOST30060s60saccount,
ip
/api/v1/orderPOST101s1saccount,
ip
/api/v1/orderDELETE30060s60saccount,
ip
/api/v1/orderDELETE101s1saccount,
ip
/api/v1/order/{orderId}GET90060s60saccount,
ip
/api/v1/order/{orderId}GET301s1saccount,
ip
/api/v1/openOrdersGET30060s60sip
/api/v1/allOrdersGET30060s60sip
Trade
/api/v1/tradesGET9060s60sip
UserTransactions
/api/v1/users/transactions/tradeGET12060s60sip
/api/v1/users/transactions/cryptoGET9060s60sip
/api/v1/users/transactions/fiatGET9060s60sip
Ticker
/api/v2/tickerGET60060s60sip
/api/v2/orderBookGET18060s60sip
Graph
/v1/ohlcsGET12060s60sip
graph-api.btcturk.com*GET60010m10mip
Crypto Exchanges
/v1/exchangesGET3001m1maccount

Response for ip based blocks.

{
"message": "TOO_MANY_REQUESTS",
"success": false,
"code": 429,
"details": "Quota exceeded. Maximum allowed: 120 per 1m.",
"limit": "120",
"period": "1m",
"policy": "ip"
}

Response for account based blocks.

{
"message": "TOO_MANY_REQUESTS",
"success": false,
"code": 429,
"details": "Quota exceeded. Maximum allowed: 300 per 1m. Please try again in 53 second(s).",
"limit": "300",
"period": "1m",
"policy": "account"
}