Ticker

The ticker endpoint is to provide a 24-hour pricing and volume summary for each market pair available on the exchange.

Ticker

GET https://sapi.finextree.com/api/v0/market/ticker

Response Body

Name
Type
Description

base_id

integer

quote_id

Integer

last_price

decimal

Last transacted price of base currency based on given quote currency

base_volume

decimal

24-hour trading volume denoted in BASE currency

quote_volume

decimal

24 hour trading volume denoted in QUOTE currency

isFrozen

integer

Indicates if the market is currently enabled (0) or disabled (1).

Response

{
    "status":"true",
    "msg":"success",
    "result": {
        "BTC_USDT" : {
            "base_id": 1,
            "quote_id": 1,
            "last_price": 70000,
            "base_volume": 0,
            "quote_volume": 0,
            "isFrozen": 0,
        }, ...
    {
}

Last updated