Skip to main content
GET
/
symbols
/
{symbol}
/
rates
Error
A valid request URL is required to generate request examples
[
  {
    "close": 95050,
    "high": 95200,
    "low": 94900,
    "open": 95000,
    "real_volume": 0,
    "spread": 1400,
    "tick_volume": 1234,
    "time": 1777879200
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.novosky.app/llms.txt

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

Authorizations

Authorization
string
header
required

Set API_TOKEN in .env to match the token configured on the server.

Path Parameters

symbol
string
required

Symbol name

Example:

"BTCUSDc"

Query Parameters

timeframe
string
default:M1

MT5 timeframe: M1 M5 M15 M30 H1 H4 D1 W1 MN1

Example:

"M15"

count
integer
default:100

Number of candles to return (most recent first)

Example:

500

Response

OHLCV candles

close
number
Example:

95050

high
number
Example:

95200

low
number
Example:

94900

open
number
Example:

95000

real_volume
integer
Example:

0

spread
integer

Spread in raw points. For BTCUSDc on Exness: 1400 pts × $0.01 = $14.00 round-turn.

Example:

1400

tick_volume
integer
Example:

1234

time
integer

Candle open time as Unix epoch (broker server time).

Example:

1777879200