Skip to main content
GET
/
crypto
/
binance
/
{coin}
/
{start}
/
{end}
Binance
curl --request GET \
  --url https://api.chinolabs.com/crypto/binance/{coin}/{start}/{end}
[
  [
    61519.92,
    1781025000000
  ],
  [
    61519.92,
    1781025001000
  ],
  [
    61519.21,
    1781025002000
  ]
]

Response element format

Each item in the list is a two-element list:
  • Index 0 — price — Binance resolution price (float)
  • Index 1 — timestamp — Unix timestamp in milliseconds

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 Polymarket Binance price ticks

Required array length: 2 elements
Example:
[61519.92, 1781025000000]