Skip to main content
GET
/
time
Error
A valid request URL is required to generate request examples
{
  "server_epoch": 1777879029,
  "server_iso": "2026-05-04T07:17:09+00:00",
  "used_symbol": "BTCUSDc",
  "utc_epoch": 1777879028,
  "utc_iso": "2026-05-04T07:17:08+00:00",
  "utc_offset_hours": 0,
  "utc_offset_seconds": 0,
  "warning": "<string>"
}

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.

Query Parameters

symbol
string

Symbol to read tick time from. Uses first available tick if omitted.

Example:

"BTCUSDc"

Response

Broker time and UTC offset

Broker server time vs machine UTC, used to auto-detect the broker timezone.

server_epoch
integer | null

Broker server time as Unix epoch. Null when market is closed and no tick is available.

Example:

1777879029

server_iso
string<date-time> | null
Example:

"2026-05-04T07:17:09+00:00"

used_symbol
string | null

Symbol whose tick was used to read server time.

Example:

"BTCUSDc"

utc_epoch
integer

Current UTC time as Unix epoch.

Example:

1777879028

utc_iso
string<date-time>
Example:

"2026-05-04T07:17:08+00:00"

utc_offset_hours
integer | null

Detected broker UTC offset rounded to nearest hour. Null when server_epoch is null.

Example:

0

utc_offset_seconds
integer | null
Example:

0

warning
string | null

Present when no tick was available and server time could not be read.