Blockchains
Get blockchains returns the supported blockchains for a decentralized exchange.
Get Exchange Blockchains
GET https://api.abyiss.com/v1/dex/{exchange}
Returns an array of supported blockchains for a decentralized exchange.
Path Parameters
Name
Type
Description
exchange*
string
The decentralized exchange
Query Parameters
Name
Type
Description
apiKey*
string
Your Abyiss API Key
[
{
"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"
}
]Copy & Paste Code
curl -H "apiKey: API KEY" https://api.abyiss.com/v1/dex/uniswapimport 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)Response Object
Example URL: https://api.abyiss.com/v1/dex/uniswap?apiKey=
[
{
"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"
}
]Response Attributes
Attribute Name
Data Type
Description
id
string
Unique exchange identifier used by Abyiss.
name
string
The official name of the decentralized exchange.
Last updated
Was this helpful?