Install
openclaw skills install time-convertTimezone conversion, current time, date arithmetic, and epoch conversion.
openclaw skills install time-convertCurrent time in any timezone, convert between timezones, date math (add/subtract), and ISO 8601 to unix epoch conversion.
curl -X POST https://time.agentutil.net/v1/now \
-H "Content-Type: application/json" \
-d '{"timezone": "Pacific/Auckland"}'
curl -X POST https://time.agentutil.net/v1/convert \
-H "Content-Type: application/json" \
-d '{"time": "2026-03-04T09:00:00", "from_timezone": "America/New_York", "to_timezone": "Pacific/Auckland"}'
curl -X POST https://time.agentutil.net/v1/math \
-H "Content-Type: application/json" \
-d '{"date": "2026-03-04T00:00:00Z", "operation": "add", "value": 7, "unit": "days"}'
Units: seconds, minutes, hours, days, weeks, months, years.
curl -X POST https://time.agentutil.net/v1/epoch \
-H "Content-Type: application/json" \
-d '{"value": 1741046400, "direction": "from_epoch"}'
{
"iso": "2026-03-04T14:30:00.000+13:00",
"unix": 1741050600,
"timezone": "Pacific/Auckland",
"day_of_week": "Wednesday",
"is_dst": true,
"request_id": "abc-123",
"service": "https://time.agentutil.net"
}
No authentication required for free tier. No personal data collected. Rate limiting uses IP hashing only.