Links

Getting Started

Our REST API provides real-time market data for thousands of markets on 23 exchanges. You can use it to fetch last price, 24 hour market statistics, recent trades, order books, and candlestick data.

Basic Examples

Quick example using curl to get a current market price:
curl "https://api.cryptowat.ch/markets/kraken/btceur/price"
response
{
"result": {
"price": 6553.8
}
}
Example using curl to get an order book:
curl "https://api.cryptowat.ch/markets/kraken/btceur/orderbook"
response
{
"result": {
"asks": [
[
6525.1,
5.34250347
],
[
6525.4,
0.53
],
...
],
"bids": [
[
6524.1,
0.1
],
[
6524,
0.15
],
...
],
"seqNum": 429614
}
}

API Clients

We provide REST clients in our official SDKs:
There are also various community-written clients. Use at your own risk.
  • Python by uoshvis
  • C# by Stock84-dev
  • PHP by DJansen20
  • Ruby by mackuba

Supported Exchanges

Name
Symbol
Markets
bitFlyer
bitflyer
Bittrex
bittrex
Gemini
gemini
Luno
luno
Gate.io
gateio
Bitfinex
bitfinex
Kraken
kraken
CEX.IO
cexio
Bisq
bisq
BitMEX
bitmex
Okex
okex
Kraken Futures
kraken-futures
Liquid
liquid
Quoine
quoine
BitBay
bitbay
HitBTC
hitbtc
Binance
binance
Binance.US
binance-us
Huobi
huobi
Poloniex
poloniex
Coinbase Pro
coinbase-pro
Bitstamp
bitstamp
Bit-Z
bitz
Bithumb
bithumb
Coinone
coinone
DEX (aggregated)
dex-aggregated
OKCoin
okcoin
FTX
ftx
Uniswap V2
uniswap-v2
Last modified 2yr ago