Returns an array of supported blockchains for a decentralized exchange.
[
{
"id": "ethereum",
"name": "Ethereum"
},
{
"id": "polygon",
"name": "Polygon"
},
{
"id": "optimism",
"name": "Optimism"
},
{
"id": "celo",
"name": "Celo"
},
{
"id": "arbitrum",
"name": "Arbitrum"
},
{
"id": "binance",
"name": "Binance Smart Chain"
}
]
{
"Unauthorized": "Invaild API Key"
}
curl -H "apiKey: API KEY" https://api.abyiss.com/v1/dex/uniswap
import urllib.request
url = "https://api.abyiss.com/v1/dex/uniswap?apiKey=*"
print(urllib.request.urlopen(url).read())
fetch("https://api.abyiss.com/v1/dex/uniswap?apiKey=*")
.then(response => response.json())
.then(data => console.log(data))
require('axios')
.get("https://api.abyiss.com/v1/dex/uniswap?apiKey=*")
.then(response => console.log(response))
require 'net/http'
uri = URI("https://api.abyiss.com/v1/dex/uniswap?apiKey=*")
puts Net::HTTP.get(uri)
[
{
"id": "ethereum",
"name": "Ethereum"
},
{
"id": "polygon",
"name": "Polygon"
},
{
"id": "optimism",
"name": "Optimism"
},
{
"id": "celo",
"name": "Celo"
},
{
"id": "arbitrum",
"name": "Arbitrum"
},
{
"id": "binance",
"name": "Binance Smart Chain"
}
]