Skip to main content

Server Time

Returns the HFT server's current time. Useful for clock-skew monitoring before signing requests.

MethodGET
Path/v5/market/time
AuthAuthenticated — the HFT proxy requires the standard auth headers on every endpoint, including this one.

Request

No parameters. Send the standard HFT auth headers (X-AUTH-APIKEY, X-AUTH-SIGNATURE, X-AUTH-EPOCH).

# Requires signing — use one of the language tabs below for a working example.
# cURL invocation needs the same X-AUTH-* headers as any other HFT endpoint.

Response

{
"retCode": 0,
"retMsg": "OK",
"result": {
"timeSecond": "1756460688",
"timeNano": "1756460688504684927"
},
"retExtInfo": {},
"time": 1756460688504
}
FieldTypeDescription
result.timeSecondstringServer time in seconds (Unix).
result.timeNanostringServer time in nanoseconds (Unix).
timeintegerServer time in milliseconds (Unix).