Skip to main content
GET
/
crypto
/
cf-benchmarks
/
{coin}
/
{start}
/
{end}
CF Benchmarks
curl --request GET \
  --url https://api.chinolabs.com/crypto/cf-benchmarks/{coin}/{start}/{end}
[
  [
    61519.92,
    1781025000000,
    61519.85
  ],
  [
    61519.92,
    1781025001000,
    61519.88
  ],
  [
    61519.21,
    1781025002000,
    61519.79
  ]
]

Response element format

Each item in the list is a three-element list:
  • Index 0 — price — Kalshi CF Benchmarks index tick (float)
  • Index 1 — timestamp — Unix timestamp in milliseconds
  • Index 2 — avg_60s — trailing 60-second average from Kalshi (float)

Path Parameters

coin
string
required

Coin ticker (btc, eth, sol, xrp, doge, hype, bnb).

start
string
required

Range start timestamp (seconds or milliseconds).

end
string
required

Range end timestamp (seconds or milliseconds).

Response

JSON list of per-second Kalshi CF Benchmarks price ticks

Required array length: 3 elements
Example:
[61519.92, 1781025000000, 61519.85]