Last Trade

Get last trade returns the most recent trade for a crypto pair.

Get Last Trade

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

Returns an object containing the latest trade 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",
    "id": "279363545",
    "timestamp": "1644525461042",
    "price": 43990.48,
    "size": 0.00608355,
    "cost": 267.618284604,
    "side": "buy"
}

Copy & Paste Code

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

Response Object

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

{
    "exchange": "coinbasepro",
    "market": "BTC/USD",
    "id": "279363545",
    "timestamp": "1644525461042",
    "price": 43990.48,
    "size": 0.00608355,
    "cost": 267.618284604,
    "side": "buy"
}

Response Attributes

Attribute NameData TypeDescription

exchange

string

The exchange id the trade occurred on.

market

string

The crypto pair that was traded.

id

string

The exchange specific unique id of the trade.

timestamp

string

The Unix timestamp that trade was executed.

price

float

The quote currency price of the market.

size

float

The quantity traded.

cost

float

The quote cost: (size * price).

side

string

Whether the trade was a buy or sell.

Last updated