Exchanges
Get exchanges returns all decentralized exchanges supported by Abyiss.
Get Exchanges
Query Parameters
Name
Type
Description
[
{
"name": "Uniswap",
"id": "uniswap"
}
]Copy & Paste Code
curl -H "apiKey: API KEY" https://api.abyiss.com/v2/deximport urllib.request
url = "https://api.abyiss.com/v2/dex?apiKey=*"
print(urllib.request.urlopen(url).read())fetch("https://api.abyiss.com/v2/dex?apiKey=*")
.then(response => response.json())
.then(data => console.log(data))require('axios')
.get("https://api.abyiss.com/v2/dex?apiKey=*")
.then(response => console.log(response))require 'net/http'
uri = URI("https://api.abyiss.com/v2/dex?apiKey=*")
puts Net::HTTP.get(uri)Response Object
[
{
"name": "Uniswap",
"id": "uniswap"
}
]Response Attributes
Attribute Name
Data Type
Description
Last updated