The current Unix timestamp, updating live — plus a converter below. Runs entirely in your browser.
Enter a Unix timestamp (seconds or milliseconds) or a date/time string.
Z or +HH:MM) is treated as UTC, not your local time zone — this keeps results consistent between the page and the API.Current time:
curl -sS https://devops.majbase.com/timestamp-generator/api
Returns {"unix_seconds", "unix_milliseconds", "iso_utc"}.
Convert a timestamp or date:
curl -sS "https://devops.majbase.com/timestamp-generator/api" --data-urlencode 'value=1700000000'
Returns {"mode": "timestamp-to-date"|"date-to-timestamp", "iso_utc", "unix_seconds", "unix_milliseconds", ...}, or {"error": "..."} for unparseable input.