Skip to main content
GET
/
symbols
/
{symbol}
Error
A valid request URL is required to generate request examples
{
  "description": "Bitcoin vs US Dollar",
  "digits": 2,
  "name": "BTCUSD",
  "point": 0.01,
  "spread": 1400,
  "trade_allowed": true,
  "trade_contract_size": 1,
  "trade_tick_size": 0.01,
  "trade_tick_value": 0.01,
  "volume_max": 100,
  "volume_min": 0.01,
  "volume_step": 0.01
}

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:

"BTCUSD"

Response

Symbol details

MT5 symbol_info() fields for a single symbol.

description
string
Example:

"Bitcoin vs US Dollar"

digits
integer

Price decimal places.

Example:

2

name
string
Example:

"BTCUSD"

point
number

Minimum price change (1 / 10^digits).

Example:

0.01

spread
integer

Current spread in raw points.

Example:

1400

trade_allowed
boolean
Example:

true

trade_contract_size
number

Contract size in base currency units (0.01 for cent accounts, 1.0 for BTCUSD/BTCUSDm standard).

Example:

1

trade_tick_size
number
Example:

0.01

trade_tick_value
number

Profit per tick per lot in account currency. Used for pip_value calculation.

Example:

0.01

volume_max
number
Example:

100

volume_min
number

Minimum lot size — used by bot as default lot.

Example:

0.01

volume_step
number
Example:

0.01