Liquidity

Get liquidity returns the total liquidity for a crypto pair on an exchange.

The liquidity endpoint is in beta. We do not recommend use in production.

Get Liquidity

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

Returns an object containing the total liquidity for a crypto pair on an exchange.

Path Parameters

NameTypeDescription

exchange*

string

Unique exchange identifier used by Abyiss.

market*

string

Unique Crypto Pair identifier used by the exchange.

Query Parameters

NameTypeDescription

apiKey*

string

Your Abyiss API Key

{
    "exchange": "coinbasepro",
    "market": "BTC-USD",
    "nonce": 5640375978,
    "liquidity": 37224813.18828725
}

Copy & Paste Code

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

Response Object

Example URL: https://api.abyiss.com/v2/liquidity/coinbasepro/btc-usd?apiKey=

{
    "exchange": "coinbasepro",
    "market": "BTC-USD",
    "nonce": 5640375978,
    "liquidity": 37224813.18828725
}

Response Attributes

Attribute NameData TypeDescription

exchange

string

The exchange id.

market

string

The crypto pair.

nonce

integer

The serial unique identifier of the order book on the exchange.

liquidity

integer

The total liquidity for a crypto market pair.

Last updated