Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
/v2/time
GET https://api.coinbase.com/v2/time
curl https://api.coinbase.com/v2/time
require 'coinbase/wallet' client = Coinbase::Wallet::Client.new(api_key: <api key>, api_secret: <api secret>) time = client.time
from coinbase.wallet.client import Client client = Client(<api_key>, <api_secret>) time = client.get_time()
var Client = require('coinbase').Client; var client = new Client({'apiKey': 'API KEY', 'apiSecret': 'API SECRET'}); client.getTime(function(err, time) { console.log(time); });
{ "data": { "iso": "2015-06-23T18:02:51Z", "epoch": 1435082571 } }
Was this page helpful?