GET
/
api
/
v3
/
brokerage
/
time
Get Server Time
curl --request GET \
  --url https://api.coinbase.com/api/v3/brokerage/time \
  --header 'Authorization: Bearer <token>'
{
  "iso": "<string>",
  "epochSeconds": "<string>",
  "epochMillis": "<string>"
}

Authorizations

Authorization
string
header
required

A JWT signed using your CDP API Key Secret, encoded in base64. Refer to the Creating API Keys section of our Coinbase App Authentication docs for information on how to generate your Bearer Token.

Response

A successful response.

iso
string

An ISO-8601 representation of the timestamp

epochSeconds
string<int64>

A second-precision representation of the timestamp

epochMillis
string<int64>

A millisecond-precision representation of the timestamp