> For the complete documentation index, see [llms.txt](https://docs.bbx.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bbx.com/bbx-dex-public-api/coinmarketcap-integration/spot/spot-ticker-24-hour-market-data.md).

# Spot Ticker —— 24-hour market data

Returns rolling 24-hour market data for BBX spot markets.

Unlike the summary endpoint, this endpoint may retain disabled markets and identify them through `isFrozen`. Delisted markets are not returned.

### Request

```http
GET /sapi/v4/market/v1/public/cmc/ticker
```

### Full URL

```
https://dex.bbx.com/sapi/v4/market/v1/public/cmc/ticker
```

### cURL

```bash
curl -s \
  'https://dex.bbx.com/sapi/v4/market/v1/public/cmc/ticker'
```

### Parameters

No query parameters are required.

### Response structure

The response is a JSON object keyed by market-pair identifiers in `BASE_QUOTE` format.

### Response fields

| Field          | Type    | Requirement | Description                                      |
| -------------- | ------- | ----------: | ------------------------------------------------ |
| `last_price`   | string  |    Required | Latest traded price                              |
| `base_volume`  | string  |    Required | Rolling 24-hour volume in the base asset         |
| `quote_volume` | string  |    Required | Rolling 24-hour volume in the quote asset        |
| `isFrozen`     | integer | Recommended | `0` for active markets; `1` for disabled markets |

### Example response

```json
{
  "BTC_USDT": {
    "last_price": "66366.10",
    "base_volume": "185.4508",
    "quote_volume": "12299724.30053",
    "isFrozen": 0
  },
  "ETH_USDT": {
    "last_price": "1935.17",
    "base_volume": "1662.009",
    "quote_volume": "3207034.91788",
    "isFrozen": 0
  }
}
```
