Market Details

Get market details returns information about a crypto pair.

Get Market Details

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

Returns an object with properties about the crypto pair.

Path Parameters

Query Parameters

{
    "exchange":"coinbasepro",
    "symbol":"BTC/USD",
    "id":"BTC-USD",
    "active":true,
    "base":"BTC",
    "quote":"USD",
    "percentage":true,
    "taker":0.005,
    "maker":0.005,
    "type":"spot"
}

Copy & Paste Code

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

Response Object

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

{
    "exchange":"coinbasepro",
    "symbol":"BTC/USD",
    "id":"BTC-USD",
    "active":true,
    "base":"BTC",
    "quote":"USD",
    "percentage":true,
    "taker":0.005,
    "maker":0.005,
    "type":"spot"
}

Response Attributes

Last updated