Exchange Markets
Get exchange markets returns all crypto pairs on a crypto exchange.
Last updated
curl -H "apiKey: API KEY" https://api.abyiss.com/v2/cex/coinbasepro/marketsfrom Abyiss import Abyiss
apiKey = "YOUR API KEY"
client = Abyiss.Client(apiKey)
exchangeMarkets = client.getExchangeMarkets("coinbasepro")
print(exchangeMarkets)fetch("https://api.abyiss.com/v2/cex/coinbasepro/markets?apiKey=*")
.then(response => response.json())
.then(data => console.log(data))require('axios')
.get("https://api.abyiss.com/v2/cex/coinbasepro/markets?apiKey=*")
.then(response => console.log(response))require 'net/http'
uri = URI("https://api.abyiss.com/v2/cex/coinbasepro/markets?apiKey=*")
puts Net::HTTP.get(uri)[
"BTC/USD",
"ETH/USD",
"DOGE/USD",
"DOT/USDT"
]