Blockchains
Get blockchains returns the supported blockchains for a decentralized exchange.
Get Exchange Blockchains
GET
https://api.abyiss.com/v2/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/v2/dex/uniswap
Response Object
Example URL: https://api.abyiss.com/v2/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?