Exchange Markets
Get exchange markets returns all crypto pairs on a crypto exchange.
Get Exchange Markets
GET https://api.abyiss.com/v2/cex/{exchange}/markets
Returns an array of all crypto pair ids on the exchange.
Path Parameters
Name
Type
Description
exchange*
string
Unique exchange identifier used by Abyiss.
Query Parameters
Name
Type
Description
apiKey*
string
Your Abyiss API Key
[
"OGN/BTC",
"REQ/BTC",
"KEEP/USD",
"AAVE/USD",
"SKL/GBP",
"MIR/EUR",
"FORTH/EUR",
"DOT/USDT"
]Copy & Paste Code
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)Response Object
Example URL: https://api.abyiss.com/v2/cex/coinbasepro/markets?apiKey=
[
"BTC/USD",
"ETH/USD",
"DOGE/USD",
"DOT/USDT"
]Response Attribute
Attribute Name
Data Type
Description
pair id
string
Unique Crypto Pair identifier used by the exchange.
Last updated
Was this helpful?