Exchange Data

Get exchange data returns information about a crypto exchange.

Get Exchange Data

GET https://api.abyiss.com/v2/cex/{exchange}

Returns an object with properties about the exchange.

Path Parameters

NameTypeDescription

exchange*

string

Unique exchange identifier used by Abyiss.

Query Parameters

NameTypeDescription

apiKey*

string

Your Abyiss API Key

{
    "name": "Coinbase Pro",
    "id": "coinbasepro",
    "countries": [
        "US"
    ],
    "hasTrades": true,
    "hasAggregates": true,
    "aggregateTimeframes": {
        "1m": 60,
        "5m": 300,
        "15m": 900,
        "1h": 3600,
        "6h": 21600,
        "1d": 86400
    },
    "url": "https://pro.coinbase.com/",
    "fees": [
        "https://docs.pro.coinbase.com/#fees",
        "https://support.pro.coinbase.com/customer/en/portal/articles/2945310-fees"
    ],
    "docs": "https://docs.pro.coinbase.com",
    "logo": "https://user-images.githubusercontent.com/1294454/41764625-63b7ffde-760a-11e8-996d-a6328fa9347a.jpg"
}

Copy & Paste Code

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

Response Object

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

{
    "name": "Coinbase Pro",
    "id": "coinbasepro",
    "countries": [
        "US"
    ],
    "hasTrades": true,
    "hasAggregates": true,
    "aggregateTimeframes": {
        "1m": 60,
        "5m": 300,
        "15m": 900,
        "1h": 3600,
        "6h": 21600,
        "1d": 86400
    },
    "url": "https://pro.coinbase.com/",
    "fees": [
        "https://docs.pro.coinbase.com/#fees",
        "https://support.pro.coinbase.com/customer/en/portal/articles/2945310-fees"
    ],
    "docs": "https://docs.pro.coinbase.com",
    "logo": "https://user-images.githubusercontent.com/1294454/41764625-63b7ffde-760a-11e8-996d-a6328fa9347a.jpg"
}

Response Attribute

Attribute NameData TypeDescription

name

string

The official name of the exchange.

id

string

Unique identifier used by Abyiss for the exchange.

countries

object

The countries abbreviations the exchange is located in.

hasTrades

boolean

Can query market trades.

hasAggregates

boolean

Can query market candle aggregates. (1m, 5m, 15m, 1h, 6h, 1d)

aggregateTimeframes

object

Timeframes supported for market candle aggregates. (Spot, Derivatives, Dex)

url

string

Exchange's official website URL.

fees

object || string

The URL to for Exchange Fee Structure.

docs

string

The URL for the Exchange Documentation.

logo

string

The URL to the Exchange Logos.

Last updated