Get Chart History
This endpoint retrieves historical candlestick (OHLCV) data for a specific trading pair on NAO Futures Plus – Nami Exchange.
GEThttps://nfp-gateway.nami.exchange/public/api/v1/price/chart-history
Headers
Header
Description
Content-Type
application/json
Query Parameters
Parameter
Type
Description
Required
Example
from
integer
The start time (in seconds) of the data interval.
True
1765937923
to
integer
The end time (in seconds) of the data interval.
True
1766026303
resolution
string
Data resolution (e.g., 1m, 5m, 1h)
True
1h
broker
string
exchange system identifier
False
NAMI_FUTURES
symbol
string
Token
False
BTCUSDT
type
string
price type
False
Last
Response
{
"status": "ok",
"code": 0,
"message": "Candles retrieved successfully",
"data": [
[1765937940, "87176.8",
"87271.5",
"87176.8",
"87257.7",
"10.3",
"898214.0"
],
]
}
{
"status": "error",
"code": 10005,
"message": "invalid 'from' parameter",
"data": null
}Last updated