Exchanges
Get exchanges endpoint returns all crypto exchanges Abyiss supports.
Get Exchanges
GET https://api.abyiss.com/v1/exchanges
Returns an array of all supported exchanges in the form of market objects.
Query Parameters
Name
Type
Description
apiKey*
string
Your Abyiss API Key
[
{
"name":"Binance",
"id":"binance"
},
{
"name":"Binance US",
"id":"binanceus"
},
{
"name":"Coinbase Pro",
"id":"coinbasepro"
},
{
"name":"BitBay",
"id":"bitbay"
}
]Copy & Paste Code
curl -H "apiKey: API KEY" https://api.abyiss.com/v1/exchangesfrom Abyiss import Abyiss
apiKey = "YOUR API KEY"
client = Abyiss.Client(apiKey)
exchanges = client.getExchanges()
print(exchanges)fetch("https://api.abyiss.com/v1/exchanges?apiKey=*")
.then(response => response.json())
.then(data => console.log(data))require('axios')
.get("https://api.abyiss.com/v1/exchanges?apiKey=*")
.then(response => console.log(response))require 'net/http'
uri = URI("https://api.abyiss.com/v1/exchanges?apiKey=*")
puts Net::HTTP.get(uri)Response Object
Example URL: https://api.abyiss.com/v1/exchanges?apiKey=
{
"name":"Binance",
"id":"binance"
},
{
"name":"Coinbase Pro",
"id":"coinbasepro"
},Response Attributes
Attribute Name
Data Type
Description
name
string
The official name of the exchange.
id
string
Unique exchange identifier used by Abyiss.
Last updated
Was this helpful?