Skip to main content

Get Server Time

Get the current server time for synchronization purposes.

HTTP Request

GET /api/v1/public/time

Request Parameters

This endpoint does not require any parameters.

Request Example

curl -X GET "https://open-api.bydoxe.com/api/v1/public/time"

Response Parameters

ParameterTypeDescription
codestringResponse code
msgstringResponse message
requestTimenumberRequest timestamp in milliseconds
dataobjectResponse data
> serverTimenumberCurrent server time in milliseconds (Unix timestamp)

Response Example

Success Response

{
"code": "00000",
"msg": "success",
"requestTime": 1732000000000,
"data": {
"serverTime": 1763459280833
}
}