Skip to main content
GET
/
exchange
/
candles
OHLCV candles
curl --request GET \
  --url https://hyper.polynode.dev/exchange/candles
[
  {
    "t": 123,
    "T": 123,
    "s": "<string>",
    "i": "<string>",
    "o": "<string>",
    "c": "<string>",
    "h": "<string>",
    "l": "<string>",
    "v": "<string>",
    "n": 123
  }
]

Documentation Index

Fetch the complete documentation index at: https://hypernode-docs.polynode.dev/llms.txt

Use this file to discover all available pages before exploring further.

OHLCV candles for a single asset and interval. Both start_time and end_time are required. Supported intervals: 1m, 5m, 15m, 1h, 4h, 1d.

Example

curl -H "x-api-key: YOUR_KEY" "https://hyper.polynode.dev/v2/candles?coin=BTC&interval=1h&start_time=1776000000000&end_time=1776090000000"
[
  {
    "t": 1775998800000,
    "T": 1776002399999,
    "s": "BTC",
    "i": "1h",
    "o": "71052.0",
    "c": "70855.0",
    "h": "71106.0",
    "l": "70833.0",
    "v": "1726.25425",
    "n": 26227
  }
]
FieldDescription
tOpen time (Unix ms)
TClose time (Unix ms)
sSymbol
iInterval
oOpen price
cClose price
hHigh price
lLow price
vVolume (base asset units)
nNumber of trades

Query Parameters

coin
string
required
interval
enum<string>
default:1h
Available options:
1m,
5m,
15m,
1h,
4h,
1d
start_time
integer
required
end_time
integer
required
network
string
default:mainnet

Response

200 - application/json

Candles array

t
integer

Open time (ms)

T
integer

Close time (ms)

s
string

Symbol

i
string

Interval

o
string

Open price

c
string

Close price

h
string

High price

l
string

Low price

v
string

Volume

n
integer

Number of trades