steampipe plugin install kaggrwal/bitfinex

BITFINEX + Steampipe

Steampipe is an open source CLI to instantly query cloud APIs using SQL.

BITFINEX a cryptocurrency exchange owned and operated by iFinex Inc.

For example: To get the Ticker Data

select
bid,
ask
from
bitfinex_ticker
where
symbol = 'tLTCUSD';
+--------+--------+
| bid | ask |
+--------+--------+
| 51.851 | 51.884 |
+--------+--------+

Documentation

Get started

Install

Download and install the latest BITFINEX plugin:

steampipe plugin install kaggrwal/bitfinex

Configuration

No configuration is needed. Installing the latest bitfinex plugin will create a config file (~/.steampipe/config/bitfinex.spc) with a single connection named bitfinex:

connection "bitfinex" {
plugin = "kaggrwal/bitfinex"
}

Get involved