> For the complete documentation index, see [llms.txt](https://fixt.gitbook.io/apis/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fixt.gitbook.io/apis/reference/derivative/contracts.md).

# Contracts

## Contracts

<mark style="color:green;">`GET`</mark> <https://fapi.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                                                       |

{% tabs %}
{% tab title="200" %}

```javascript
{
    "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,
        }, {...}, {...},
    ]
}
```

{% endtab %}
{% endtabs %}
