Returns an object with properties about the crypto pair.
{
"exchange":"coinbasepro",
"symbol":"BTC/USD",
"id":"BTC-USD",
"active":true,
"base":"BTC",
"quote":"USD",
"percentage":true,
"taker":0.005,
"maker":0.005,
"type":"spot"
}
{
"Unauthorized": "Invaild API Key"
}
curl -H "apiKey: API KEY" https://api.abyiss.com/v2/cex/coinbasepro/BTC-USD
from Abyiss import Abyiss
apiKey = "YOUR API KEY"
client = Abyiss.Client(apiKey)
exchangeMarketDetails = client.getMarketDetails("coinbasepro", "BTC-USD")
print(exchangeMarketDetails)
fetch("https://api.abyiss.com/v2/cex/coinbasepro/BTC-USD?apiKey=*")
.then(response => response.json())
.then(data => console.log(data))
require('axios')
.get("https://api.abyiss.com/v2/cex/coinbasepro/BTC-USD?apiKey=*")
.then(response => console.log(response))
require 'net/http'
uri = URI("https://api.abyiss.com/v2/cex/coinbasepro/BTC-USD?apiKey=*")
puts Net::HTTP.get(uri)
{
"exchange":"coinbasepro",
"symbol":"BTC/USD",
"id":"BTC-USD",
"active":true,
"base":"BTC",
"quote":"USD",
"percentage":true,
"taker":0.005,
"maker":0.005,
"type":"spot"
}