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.
curl "https://api.cryptowat.ch/markets/kraken/btceur/price"
response
{
"result": {
"price": 6553.8
}
}
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
}
}
We provide REST clients in our official SDKs:
There are also various community-written clients. Use at your own risk.
Name | Symbol | Markets |
bitFlyer | bitflyer | |
Bittrex | bittrex | |
Gemini | gemini | |
Luno | luno | |
Gate.io | gateio | |
Bitfinex | bitfinex | |
Kraken | kraken |