本文介绍Bitfinex APi

Platform Status

Get the current status of the platform. Maintenance periods last for just few minutes and might be necessary from time to time during upgrades of core components of our infrastructure. Even if rare it is important to have a way to notify users. For a real-time notification we suggest to use websockets and listen to events 20060/20061

 
 Try It

gethttps://api.bitfinex.com/v2/platform/status

Copy

curl https://api.bitfinex.com/v2/platform/status

Response Details

Fields Type Description
OPERATIVE int 1=operative, 0=maintenance

Maintenance mode

When the platform is marked in maintenance mode bots should stop trading activity. Cancelling orders will be still possible.

SUGGEST EDITS

Tickers

The ticker is a high level overview of the state of the market. It shows you the current best bid and ask, as well as the last trade price. It also includes information such as daily volume and how much the price has moved over the last day.

 
 Try It

gethttps://api.bitfinex.com/v2/tickers

Copy

curl https://api.bitfinex.com/v2/tickers?symbols=tBTCUSD,tLTCUSD,fUSD

curl https://api.bitfinex.com/v2/tickers?symbols=tBTCUSD

curl https://api.bitfinex.com/v2/tickers?symbols=ALL
200 OK400 Bad Request

[ // on trading pairs (ex. tBTCUSD) [ SYMBOL, BID, BID_SIZE, ASK, ASK_SIZE, DAILY_CHANGE, DAILY_CHANGE_PERC, LAST_PRICE, VOLUME, HIGH, LOW ], // on funding currencies (ex. fUSD) [ SYMBOL, FRR, BID, BID_SIZE, BID_PERIOD, ASK, ASK_SIZE, ASK_PERIOD, DAILY_CHANGE, DAILY_CHANGE_PERC, LAST_PRICE, VOLUME, HIGH, LOW ], ... ]

QUERY PARAMS

symbols

The symbols you want information about as a comma separated list, or ALL for every symbol. Ex:

Response Details

Fields Type Description
FRR float Flash Return Rate - average of all fixed rate funding over the last hour
BID float Price of last highest bid
BID_PERIOD int Bid period covered in days
BID_SIZE float Sum of the 25 highest bid sizes
ASK float Price of last lowest ask
ASK_PERIOD int Ask period covered in days
ASK_SIZE float Sum of the 25 lowest ask sizes
DAILY_CHANGE float Amount that the last price has changed since yesterday
DAILY_CHANGE_PERC float Amount that the price has changed expressed in percentage terms
LAST_PRICE float Price of the last trade
VOLUME float Daily volume
HIGH float Daily high
LOW float Daily low
SUGGEST EDITS

Ticker

The ticker is a high level overview of the state of the market. It shows you the current best bid and ask, as well as the last trade price. It also includes information such as daily volume and how much the price has moved over the last day.

 
 Try It

gethttps://api.bitfinex.com/v2/ticker/Symbol

Copy

curl https://api.bitfinex.com/v2/ticker/tBTCUSD
200 OK400 Bad Request

// on trading pairs (ex. tBTCUSD) [ BID, BID_SIZE, ASK, ASK_SIZE, DAILY_CHANGE, DAILY_CHANGE_PERC, LAST_PRICE, VOLUME, HIGH, LOW ] // on funding currencies (ex. fUSD) [ FRR, BID, BID_SIZE, BID_PERIOD, ASK, ASK_SIZE, ASK_PERIOD, DAILY_CHANGE, DAILY_CHANGE_PERC, LAST_PRICE, VOLUME, HIGH, LOW ]

PATH PARAMS

Symbol*

The symbol you want information about. You can find the list of valid symbols by calling the /symbols endpoint.

Response Details

Fields Type Description
FRR float Flash Return Rate - average of all fixed rate funding over the last hour
BID float Price of last highest bid
BID_PERIOD int Bid period covered in days
BID_SIZE float Sum of the 25 highest bid sizes
ASK float Price of last lowest ask
ASK_PERIOD int Ask period covered in days
ASK_SIZE float Sum of the 25 lowest ask sizes
DAILY_CHANGE float Amount that the last price has changed since yesterday
DAILY_CHANGE_PERC float Amount that the price has changed expressed in percentage terms
LAST_PRICE float Price of the last trade
VOLUME float Daily volume
HIGH float Daily high
LOW float Daily low
SUGGEST EDITS

Trades

Trades endpoint includes all the pertinent details of the trade, such as price, size and time.

 
 Try It

gethttps://api.bitfinex.com/v2/trades/Symbol/hist

Copy

curl https://api.bitfinex.com/v2/trades/tBTCUSD/hist
200 OK400 Bad Request

// on trading pairs (ex. tBTCUSD) [ [ ID, MTS, AMOUNT, PRICE ] ] // on funding currencies (ex. fUSD) [ [ ID, MTS, AMOUNT, RATE, PERIOD ] ]

PATH PARAMS

Symbol*

The symbol you want information about.

QUERY PARAMS

limit

Number of records

start

Millisecond start time

end

Millisecond end time

sort

if = 1 it sorts results returned with old > new

Response Details

Fields Type Description
MTS int millisecond time stamp
±AMOUNT float How much was bought (positive) or sold (negative).
PRICE float Price at which the trade was executed
RATE float Rate at which funding transaction occurred
PERIOD int Amount of time the funding transaction was for

The order that causes the trade determines if it is a buy or a sell.

SUGGEST EDITS

Books

The Order Books channel allow you to keep track of the state of the Bitfinex order book. It is provided on a price aggregated basis, with customizable precision.

 
 Try It

gethttps://api.bitfinex.com/v2/book/Symbol/Precision

Copy

curl https://api.bitfinex.com/v2/book/tBTCUSD/P0
200 OK400 Bad Request

// on trading pairs (ex. tBTCUSD) [ [ PRICE, COUNT, AMOUNT ] ] // on funding currencies (ex. fUSD) [ [ RATE, PERIOD, COUNT, AMOUNT ] ]

PATH PARAMS

Symbol*

The symbol you want information about. You can find the list of valid symbols by calling the /symbols endpoint.

Precision*

Level of price aggregation (P0, P1, P2, P3, P4, R0)

QUERY PARAMS

len

Number of price points ("25", "100")

Response Details

Fields Type Description
PRICE float Price level
RATE float Rate level
PERIOD float Period level (Funding only)
COUNT int Number of orders at that price level
±AMOUNT float Total amount available at that price level.

For Trading: if AMOUNT > 0 then bid else ask.
For Funding: if AMOUNT > 0 then ask else bid.

SUGGEST EDITS

Stats

Various statistics about the requested pair.

 
 Try It

gethttps://api.bitfinex.com/v2/stats1/Key:Size:Symbol/Section

200 OK400 Bad Request

// response with Section = "last"
[
MTS,
VALUE
]

// response with Section = "hist"
[
[ MTS, VALUE ],
...
]

PATH PARAMS

Key*

Allowed values: "funding.size", "credits.size", "credits.size.sym", "pos.size"

Size*

Available values: '1m'

Symbol*

The symbol you want information about.

Side*

Available values: "long", "short"

Section*

Available values: "last", "hist"

QUERY PARAMS

sort

if = 1 it sorts results returned with old > new

Response Details

Fields Type Description
MTS int millisecond timestamp
VALUE float Total amount

Available Keys

Key Description Arguments Example
pos.size Total Open Position (long / short) :1m :SYM_TRADING :SIDE pos.size:1m:tBTCUSD:long , pos.size:1m:tBTCUSD:short
funding.size Total Active Funding :1m :SYM_FUNDING funding.size:1m:fUSD
credits.size Active Funding used in positions :1m :SYM_FUNDING credits.size:1m:fUSD
credits.size.sym Active Funding used in positions (per trading symbol) :1m :SYM_FUNDING :SYM_TRADING credits.size.sym:1m:fUSD:tBTCUSD
SUGGEST EDITS

Candles

Provides a way to access charting candle info

 
 Try It

gethttps://api.bitfinex.com/v2/candles/trade:TimeFrame:Symbol/Section

200 OK400 Bad Request

// response with Section = "last"
[
MTS,
OPEN,
CLOSE,
HIGH,
LOW,
VOLUME
]

// response with Section = "hist"
[
[ MTS, OPEN, CLOSE, HIGH, LOW, VOLUME ],
...
]

PATH PARAMS

TimeFrame*

Available values: '1m', '5m', '15m', '30m', '1h', '3h', '6h', '12h', '1D', '7D', '14D', '1M'

Symbol*

The symbol you want information about.

Section*

Available values: "last", "hist"

QUERY PARAMS

limit

Number of candles requested

start

Filter start (ms)

end

Filter end (ms)

sort

if = 1 it sorts results returned with old > new

Response Details

Fields Type Description
MTS int millisecond time stamp
OPEN float First execution during the time frame
CLOSE float Last execution during the time frame
HIGH float Highest execution during the time frame
LOW float Lowest execution during the timeframe
VOLUME float Quantity of symbol traded within the timeframe

Available Keys

Key Description Arguments Example
trade Trading Candles :TF :SYM_TRADING trade :1m :tBTCUSD
trade Funding Candles :TF :SYM_FUNDING:pPERIOD trade :1m :fUSD :p30
trade Aggregate Funding Candles (AGGR=[10,30]) :TF :SYM_FUNDING :aAGGR :pPER_START :p :PER_END trade :1m :fUSD :a10 :p2 :p10 , trade :1m :fUSD :a10 :p11 :p20 , trade :1m :fUSD :a10 :p21 :p30 , trade :1m :fUSD :a30 :p2 :p30
SUGGEST EDITS

Market Average Price

Calculate the average execution rate for Trading or Margin funding.

 
 Try It

posthttps://api.bitfinex.com/v2/calc/trade/avg

Copy

curl --request POST \
  --url 'https://api.bitfinex.com/v2/calc/trade/avg?symbol=symbol'
200 OK400 Bad Request

[RATE_AVG, AMOUNT]

QUERY PARAMS

symbol*

The symbol you want information about.

amount

Amount. Positive for buy, negative for sell (ex. "1.123")

period

(optional) Maximum period for Margin Funding

rate_limit

Limit rate/price (ex. "1000.5")

 

Bitfinex API的更多相关文章

  1. 各大知名区块链交易所链接及API文档链接

    区块链交易所链接 火币网(Huobi):https://www.huobi.br.com/zh-cn/ API文档:https://github.com/huobiapi/API_Docs/wiki ...

  2. 干货来袭-整套完整安全的API接口解决方案

    在各种手机APP泛滥的现在,背后都有同样泛滥的API接口在支撑,其中鱼龙混杂,直接裸奔的WEB API大量存在,安全性令人堪优 在以前WEB API概念没有很普及的时候,都采用自已定义的接口和结构,对 ...

  3. 12306官方火车票Api接口

    2017,现在已进入春运期间,真的是一票难求,深有体会.各种购票抢票软件应运而生,也有购买加速包提高抢票几率,可以理解为变相的黄牛.对于技术人员,虽然写一个抢票软件还是比较难的,但是还是简单看看123 ...

  4. 几个有趣的WEB设备API(二)

    浏览器和设备之间还有很多有趣的接口, 1.屏幕朝向接口 浏览器有两种方法来监听屏幕朝向,看是横屏还是竖屏. (1)使用css媒体查询的方法 /* 竖屏 */ @media screen and (or ...

  5. html5 canvas常用api总结(三)--图像变换API

    canvas的图像变换api,可以帮助我们更加方便的绘画出一些酷炫的效果,也可以用来制作动画.接下来将总结一下canvas的变换方法,文末有一个例子来更加深刻的了解和利用这几个api. 1.画布旋转a ...

  6. JavaScript 对数据处理的5个API

    JavaScript对数据处理包括向上取整.向下取整.四舍五入.固定精度和固定长度5种方式,分别对应ceil,floor,round,toFixed,toPrecision等5个API,本文将对这5个 ...

  7. ES5对Array增强的9个API

    为了更方便的对Array进行操作,ES5规范在Array的原型上新增了9个方法,分别是forEach.filter.map.reduce.reduceRight.some.every.indexOf ...

  8. javascript的api设计原则

    前言 本篇博文来自一次公司内部的前端分享,从多个方面讨论了在设计接口时遵循的原则,总共包含了七个大块.系卤煮自己总结的一些经验和教训.本篇博文同时也参考了其他一些文章,相关地址会在后面贴出来.很难做到 ...

  9. 一百元的智能家居——Asp.Net Mvc Api+讯飞语音+Android+Arduino

    大半夜的,先说些废话提提神 如今智能家居已经不再停留在概念阶段,高大上的科技公司都已经推出了自己的部分或全套的智能家居解决方案,不过就目前的现状而言,大多还停留在展厅阶段,还没有广泛的推广起来,有人说 ...

随机推荐

  1. 使用HTML5监测网站性能

    在这个信息爆炸的互联网时代,越来越多的人缺少了等待的耐心,网站性能对于一个网站来说越来越重要.以下为监控到的网站打开时间对跳出率的影响: 当网站打开时间在0-1秒时,跳出率为12% 当网站打开时间在1 ...

  2. Unity Shader 自定义纹理坐标变量写法

    Properties { _R(,)) = 1.0 _ColorTex("ColorTex (RGB)", 2D) = "red" {} struct Inpu ...

  3. Ansible的快速入门

    Ansible 是一个简单的自动化引擎,可完成配置管理,应用部署,服务编排等各种IT需求. Ansible使用python语言开发实现的开源软件,依赖于Jinjia2,paramiko和PyYAML这 ...

  4. openjdk源码阅读导航

    转自:http://rednaxelafx.iteye.com/blog/1549577 这是链接帖.主体内容都在各链接中. 怕放草稿箱里过会儿又坑掉了,总之先发出来再说…回头再慢慢补充内容. 先把I ...

  5. web移动前端页面,jquery判断页面滑动方向

    /*判断上下滑动:*/ $('body').bind('touchstart',function(e){ startX = e.originalEvent.changedTouches[0].page ...

  6. java基础---->Runtime类的使用(一)

    这里面我们对java中的Runtime类做一个简单的了解介绍.若不常想到无常和死,虽有绝顶的聪明,照理说也和呆子一样. Runtimeo类的使用 一.得到系统内存的一些信息 @Test public ...

  7. QWidget编写的安卓app

    最近为了配套人脸识别的整套设备去检测,特意做了个机关控制app,需要现场修改前端设备和服务器设备的一些参数以便进行检测.qt做一些简单的app还是非常方便的.特意增加了禁用屏保功能.apk文件体验:h ...

  8. CentOS 添加环境变量

      1.修改环境变量需要修改/etc/profile export PATH="$PATH:/usr/src/ruby-1.9.3-p0/ruby:/usr/local/bin/gem&qu ...

  9. 自定义容器启动脚本报错:exec user process caused "no such file or directory"

    创建容器起不来,一直是restarting状态,查看容器的报错日志如下: standard_init_linux.go:178: exec user process caused "no s ...

  10. Windows任务计划的设置

    需求:因为要定时跑一些exe的小程序,来定时执行项目内的某段代码.所以需要建一个任务计划 1. 2. 3.