Exchanges

Get exchanges returns all decentralized exchanges supported by Abyiss.

Get Exchanges

GET https://api.abyiss.com/v2/dex

Returns an array of all supported decentralized exchanges.

Query Parameters

NameTypeDescription

apiKey*

string

Your Abyiss API Key

[
    {
        "name": "Uniswap",
        "id": "uniswap"
    }
]

Copy & Paste Code

curl -H "apiKey: API KEY" https://api.abyiss.com/v2/dex

Response Object

Example URL: https://api.abyiss.com/v2/dex?apiKey=

[
    {
        "name": "Uniswap",
        "id": "uniswap"
    }
]

Response Attributes

Attribute NameData TypeDescription

name

string

The official name of the exchange.

id

string

Unique exchange identifier used by Abyiss.

Last updated