Apoya a Time.now: Únete a nuestro Plan Premium ¡para una experiencia sin anuncios! Apóyanos: ¡Hazte Premium sin anuncios!
Productividad Guía

Live Time in Spreadsheets

Financial modeling often requires knowing the market time in London, New York, or Tokyo. You can pull live API data directly into Google Sheets using a simple script.

JAVASCRIPT
/**
 * Fills the cell with current time from API
 * Usage: =GET_API_TIME("Europe/London")
 */
function GET_API_TIME(timezone) {
  var url = "https://time.now/developer/api/timezone/" + timezone;
  var response = UrlFetchApp.fetch(url);
  var json = JSON.parse(response.getContentText());
  return json.datetime;
}

¿Por qué usar Time.Now para Productividad?

  • Live market data sync
  • Custom functions in Sheets
  • Supports all IANA timezones
Referencia de la API Ver todas las guías