For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

Name
Type
Description

apiKey*

string

Your Abyiss API Key

[
    {
        "name": "Uniswap",
        "id": "uniswap"
    }
]
{
    "Unauthorized": "Invaild API Key"
}

Copy & Paste Code

curl -H "apiKey: API KEY" https://api.abyiss.com/v2/dex
import urllib.request
url = "https://api.abyiss.com/v2/dex?apiKey=*"
print(urllib.request.urlopen(url).read())
fetch("https://api.abyiss.com/v2/dex?apiKey=*")
  .then(response => response.json())
  .then(data => console.log(data))
require('axios')
  .get("https://api.abyiss.com/v2/dex?apiKey=*")
  .then(response => console.log(response))
require 'net/http'
uri = URI("https://api.abyiss.com/v2/dex?apiKey=*")
puts Net::HTTP.get(uri)

Response Object

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

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

Response Attributes

Attribute Name
Data Type
Description

name

string

The official name of the exchange.

id

string

Unique exchange identifier used by Abyiss.

Last updated