Skip to content

now

now() → datetime · Date & Time

Return the current UTC datetime.

utlx
// Use case: add timestamp to output
{
  ...$input,
  timestamp: now(),                          // 2026-05-01T14:30:00Z (UTC datetime)
  processedAt: formatDate(now(), "yyyy-MM-dd'T'HH:mm:ss'Z'")
}

Released under AGPL-3.0.