Links

Markets

Cryptowatch market endpoints
A market is a pair listed on an exchange. For example, btceur on exchange kraken is a market.
curl "https://api.cryptowat.ch/markets/kraken/btceur"
{
"id": 86,
"exchange": "kraken",
"pair": "btceur",
"active": true,
"routes": {
"price": "https://api.cryptowat.ch/markets/kraken/btceur/price",
"summary": "https://api.cryptowat.ch/markets/kraken/btceur/summary",
"orderbook": "https://api.cryptowat.ch/markets/kraken/btceur/orderbook",
"trades": "https://api.cryptowat.ch/markets/kraken/btceur/trades",
"ohlc": "https://api.cryptowat.ch/markets/kraken/btceur/ohlc"
}
}
Note: Cryptowatch now supports more than just currency pairs, such as futures contracts. This version of the API still calls these "pairs", whereas in the next version they will be called "instruments".
The /markets/:exchange/:pair API namespace is where all of the market data endpoints live.
Last modified 3yr ago