---
title: "Get market statistics"
method: GET
path: "/ticker/{symbol}"
tags: ["Market Data"]
---

# Get market statistics

`GET /ticker/{symbol}`

Returns 24-hour statistics for a specific symbol.

## Path parameters

- `symbol` string, required

## Response `200`

Successful response

- MarketStats — 24-hour market statistics
  - `symbol` string
  - `priceChange` number — Absolute price change (24h)
  - `priceChangePercent` number — Percentage price change (24h)
  - `lastPrice` number — Last traded price
  - `highPrice` number — 24h high
  - `lowPrice` number — 24h low
  - `volume` number — 24h volume (base currency)
  - `quoteVolume` number — 24h volume (quote currency)
  - `markPrice` number — Fair value price (for margin calculations)
  - `oraclePrice` number — External reference price
  - `openInterest` number — Total open positions (base currency)
  - `fundingRate` number — Current funding rate
  - `regime` integer — Market regime indicator (-1, 0, 1)
  - `regimeDt` integer — Regime duration in 10s intervals
  - `regimeVol` number — Regime-adjusted volatility
  - `regimeMv` number — Regime mean value
  - `fairBookPx` number — Fair price derived from order book
  - `fairVol` number — Fair volatility estimate
  - `fairBias` number — Fair price bias
  - `timestamp` integer — Timestamp (nanoseconds)

## Other responses

- `404` — Not Found - Symbol or account doesn't exist
- `500` — Internal Server Error - Database or channel error

---

[API](https://skmtc.net/bulk/apis/bulk-trade-api.md) · [All operations](https://skmtc.net/bulk/apis/bulk-trade-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bulk/bulk-trade-api/versions/087f7b45aa1a/schema)
