Bittrex
Seamlessly integrate Bittrex with your favorite APIs, databases, and programming languages, using WayScript.
Realtime and historical data on digital currencies, such as Bitcoin.

​
📥
Input

Certain modes collect data about the overall market, while others look up individual Tickers.
Tickers follow format 'Ticker 1-Ticker 2' where 1 unit of Ticker 2 is converted to Ticker 1.
Ex. Last Price for 'BTC-LTC' of 0.00832 means that 1 LTC = 0.00832 BTC.
For ticker queries, you can select an option from the available list, or input your own.

​
âš™
Modes

The Following modes are available and the listed outputs can be retrieved as variables.
(Single): variables are single items
(List): variables are lists
Note: 'JSON Data' is available for all modes and is always a single item.

List of All Tickers (List)

1
Markets = [
2
{
3
market_name : String,
4
min_trade_size : Float,
5
created : Date,
6
base_currency : String,
7
base_currency_name : String,
8
is_active : Bool,
9
is_restricted : Bool,
10
logo_url : Url,
11
market_currency : String,
12
market_currency_name : String,
13
},
14
]
Copied!

Current Data for a Ticker (Single)

1
Ticker = {
2
market_name : String,
3
ask : Float,
4
bid : Float,
5
last : Float,
6
}
Copied!

Last 24 Hour Summaries of all Active Exchanges (List)

1
Market_Summaries = [
2
{
3
market_name : String,
4
ask : Float,
5
base_volume : Float,
6
bid : Float,
7
created : Date,
8
high : Float,
9
last : Float,
10
low : Float,
11
open_buy_orders : Float,
12
open_sell_orders: Float,
13
prev_day : Float,
14
timestamp : Date,
15
volume : Float,
16
},
17
]
Copied!

Last 24 Hour Summary of a Ticker (Single)

1
Market_Summary = {
2
ask : Float,
3
base_volume : Float,
4
bid : Float,
5
created : Date,
6
high : Float,
7
last : Float,
8
low : Float,
9
market_name : String,
10
open_buy_orders : Int,
11
open_sell_orders : Int,
12
prev_day : Float,
13
timestamp : Date,
14
volume : Float,
15
}
Copied!

Historical Market Data for a Ticker (List)

1
Historical_Date = [
2
{
3
fill_type : String,
4
id : Int,
5
order_type : String,
6
price : Float,
7
quantity : Float,
8
timestamp : Date,
9
total : Float,
10
uuid : String,
11
},
12
]
Copied!
​
Last modified 2yr ago