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

NameTypeDescription

exchange*

string

The decentralized exchange

Query Parameters

NameTypeDescription

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/uniswap

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 NameData TypeDescription

id

string

Unique exchange identifier used by Abyiss.

name

string

The official name of the decentralized exchange.

Last updated