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

# Ticker

## Ticker

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

**Response Body**

| Name           | Type    | Description                                                                                                                                                        |
| -------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `base_id`      | integer | The quote pair [Unified Cryptoasset ID](https://pro-api.coinmarketcap.com/v1/cryptocurrency/map?CMC_PRO_API_KEY=UNIFIED-CRYPTOASSET-INDEX\&listing_status=active). |
| `quote_id`     | Integer | The base pair [Unified Cryptoasset ID](https://pro-api.coinmarketcap.com/v1/cryptocurrency/map?CMC_PRO_API_KEY=UNIFIED-CRYPTOASSET-INDEX\&listing_status=active).  |
| `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**

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

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

{% endtab %}
{% endtabs %}
