> 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/contract_specs.md).

# Contract\_specs

## Contract specs

<mark style="color:green;">`GET`</mark> <https://fapi.fixt.io/api/v0/market/contract_specs>

Describes the specification of the contracts, mainly the pricing of the contract and its type (vanilla, inverse, or quanto).

#### Response Body

| Name                      | Type    | Description                                                                       |
| ------------------------- | ------- | --------------------------------------------------------------------------------- |
| ticker\_id                | string  | Identifier of a ticker with delimiter to separate base/quote, eg. BTC-USDT        |
| contract\_type            | string  | Describes the type of contract - Vanilla, Inverse or Quanto?                      |
| contract\_price           | decimal | Describes the price per contract.                                                 |
| contract\_price\_currency | string  | Describes the currency which the contract is priced in (e.g. USD, EUR, BTC, USDT) |

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

```javascript
{
    "status":"true",
    "msg":"success",
    "result": [
        {
            "ticker_id": "BTC_USDT",
            "contract_type": "Vanilla",
            "contract_price": 70000,
            "contract_price_currency": "USDT",
        }, {...}, {...},
    ]
}
```

{% endtab %}
{% endtabs %}
