Open hhstore opened 6 years ago
https://www.bitmex.com/app/restAPI#%E8%AF%B7%E6%B1%82%E9%A2%91%E7%8E%87%E9%99%90%E5%88%B6
API明确限速, 且支持联系官方调整调用上限.
对我们的 REST API 的请求频率限于每5分钟300次。 此计数连续补充。 如果你没有登录,你的请求是每5分钟150次。
**请注意你的程序抛出的错误数目!**如果在短时间内产生大量的响应(如400或500),你的 IP 可能被禁用一小时。 在短时间内的多个禁用将导致禁用一周。
如果你已超过频率限制,并且认为这是合理的需求,请发电子邮件给我们 support@bitmex.com 来讨论提高你的频率限制。
有
每分钟10到90个
请求的范围内变化,具体取决于某些因素(例如服务器负载,端点等)。有
429
。无
(目前现货/期货
的API未发现说明)有
现货和合约, 都有限速, 而且限速频率很低
例如: 下单: 访问频率 20次/2秒
# 1. POST /api/v1/future_userinfo 获取OKEx合约账户信息(全仓)
URL https://www.okex.com/api/v1/future_userinfo.do 访问频率 10次/2秒
# 2. POST /api/v1/future_position 获取用户持仓获取OKEX合约账户信息 (全仓)
URL https://www.okex.com/api/v1/future_position.do 访问频率 10次/2秒
# 3. POST /api/v1/future_trade 合约下单
URL https://www.okex.com/api/v1/future_trade.do 访问频率 5次/1秒(按币种单独计算)
# 4. POST /api/v1/future_trades_history 获取OKEX合约交易历史(非个人)访问频率
URL https://www.okex.com/api/v1/future_trades_history 访问频率 2次/2秒
# 5. POST /api/v1/future_batch_trade 批量下单
URL https://www.okex.com/api/v1/future_batch_trade.do 访问频率 3次/1秒 最多一次下1-5个订单(按币种单独计算)
# 6. POST /api/v1/future_cancel 取消合约订单
URL https://www.okex.com/api/v1/future_cancel.do 访问频率 2次/1秒,最多一次撤1-5个订单(按币种单独计算)
# 10. POST /api/v1/future_position_4fix 逐仓用户持仓查询
URL https://www.okex.com/api/v1/future_position_4fix.do 访问频率 10次/2秒
/order/new/multi
/api/v1/batch_trade
批量下单
API 类型:
关于 websocket API:
关于 fix API:
https://docs.coinapi.io/#fix-api
https://github.com/coinapi/coinapi-sdk
协议版本 | FIX.4.4 (XML FIX规范可以在这里下载:FIX44.xml)
协议: https://raw.githubusercontent.com/connamara/quickfixn/master/spec/fix/FIX44.xml
金融信息交换(FIX)协议是1992年发起的一种电子通信协议,用于与证券交易和市场相关的国际实时信息交换。您可以使用它来接收我们的实时市场数据,它是WebSocket协议的替代品。
为简单起见,在我们的FIX协议实现中,您无需订阅市场数据。成功登录后,我们将从所有符号和交换开始向您提供实时市场数据流。
如果您没有使用FIX协议的经验,那么请考虑使用更简单的REST或WebSocket API。
fix API 协议 SDK:
exchange ref:
bitmex:
合约:
api doc:
https://www.bitmex.com/app/apiOverview
restful api: https://www.bitmex.com/app/restAPI
websocket api: https://www.bitmex.com/app/wsAPI
bitfinex:
api doc:
okex:
api doc:
https://github.com/okcoin-okex/API-docs-OKEx.com
现货(spot) : https://github.com/okcoin-okex/API-docs-OKEx.com/tree/master/API-For-Spot-CN
期货(futures): https://github.com/okcoin-okex/API-docs-OKEx.com/tree/master/API-For-Futures-CN
币安(binance):
api doc:
https://github.com/binance-exchange/binance-official-api-docs
rest: https://github.com/binance-exchange/binance-official-api-docs/blob/master/rest-api.md
websocket: https://github.com/binance-exchange/binance-official-api-docs/blob/master/web-socket-streams.md
火币(huobi):
https://www.hadax.com/zh-cn/
火币的API文档, 比较有价值, 介绍了 websocket 使用细节.
api doc:
https://github.com/huobiapi/API_Docs
官方SDK: