00:00:00
— — —
Unix
—
UTC
—
Precision timestamp conversion instrument
Console
$
GET
/api/
// Hit Run or press Enter...
Reference
GET
/api
Returns the current server time. No parameters required.
"unix": 1739721600000
"utc": "Sun, 16 Feb 2026 16:00:00 GMT"
"iso": "2026-02-16T16:00:00.000Z"
"timestamp": 1739721600
GET
/api/:date
Converts any date input to structured timestamp output. Accepts ISO strings, Unix timestamps (milliseconds or seconds), and natural language dates.
/api/2024-12-25
/api/1704067200000
/api/1704067200
/api/March%2015,%202025
ERR
Error Response
Invalid inputs return a structured error with a hint for correction.
"error": "Invalid Date"
"message": "Unable to parse the provided date format"
"hint": "Try: ISO date, Unix timestamp, or natural language"
SYS
/health
Returns service status, uptime, and environment. Use for monitoring.