Summary

Returns all Contracts information.

Contracts

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

Response Body

Name
Type
Description

trading_pairs

string

Identifier of a ticker with delimiter to separate base/quote, eg. BTC-USDT

base_currency

string

Symbol/currency code of base pair, eg. BTC

quote_currency

string

Symbol/currency code of quote pair, eg. ETH

last_price

decimal

Last transacted price of base currency based on given quote currency

lowest_ask

decimal

Lowest Ask price of base currency based on given quote currency

highest_bid

decimal

Highest bid price of base currency based on given quote currency

base_volume

decimal

24-hr volume of market pair denoted in BASE currency

quote_volume

decimal

24-hr volume of market pair denoted in QUOTE currency

price_change_percent_24h

decimal

24-hr % price change of market pair

highest_price_24h

decimal

Highest price of base currency based on given quote currency in the last 24-hrs

lowest_price_24h

decimal

Lowest price of base currency based on given quote currency in the last 24-hrs

{
    "status":"true",
    "msg":"success",
    "result": [
        {
            "trading_pairs": "BTC_USDT",
            "base_currency": "BTC",
            "quote_currency": "USDT",
            "last_price": 70000,
            "lowest_ask": 0,   
            "highest_bid": 0,
            "base_volume": 1,
            "quote_volume": 70000,
            "price_change_percent_24h": 0,
            "highest_price_24h": 70000,
            "lowest_price_24h": 70000
        }, {...}, {...},
    ]
}

Last updated