Contracts

Contracts

GET https://fapi.api.fixt.io/api/v0/market/contracts

Returns all Contracts information.

Response Body

Name
Type
Description

ticker_id

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

base_volume

decimal

24 hour trading volume in BASE currency

usd_volume

decimal

24 hour trading volume in USD

quote_volume

decimal

24 hour trading volume in QUOTE currency

bid

decimal

Current highest bid price

ask

decimal

Current lowest ask price

high

decimal

Rolling 24-hour highest transaction price

low

decimal

Rolling 24-hour lowest transaction price

product_type

string

Futures, Perpetual, Options

open_interest

decimal

The number of outstanding derivatives contracts that have not been settled

open_interest_usd

decimal

The sum of the Open Positions (long or short) in USD Value of the contract

index_price

decimal

Last calculated index price for underlying of contract

funding_rate

decimal

Current funding rate

{
    "status":"true",
    "msg":"success",
    "result": [
        {
            "ticker_id": "BTC_USDT",
            "base_currency": "BTC",
            "quote_currency": "USDT",
            "last_price": 70000,
            "base_volume": 1,
            "quote_volume": 70000,
            "usd_volume": 70000,
            "bid": 70000,
            "ask": 70000,
            "high": 71000,
            "low": 69000,
            "product_type": "Perpetual",
            "open_interest": 70000,
            "open_interest_usd": 70000,
            "index_price": 70000,
            "funding_rate": 0.000024,
            "newxt_funding_timestap": 1713398400000,
            "maker_fee": 0.0008,
            "taker_fee": 0.001,
        }, {...}, {...},
    ]
}

Last updated