tools/convert/timestamp converter
// convertnew

timestamp converter

unix ↔ date, iso 8601, utc, relative

— paste a unix timestamp or date string // client-only
unix (sec)
unix (ms)
iso 8601
utc string
local
relative
day of week
curl -sX POST 'https://api.whittly.dev/v1/timestamp/convert' \
  -H 'Authorization: Bearer $WHITTLY_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"input":"1716000000"}'
const res = await fetch('https://api.whittly.dev/v1/timestamp/convert', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer ' + apiKey,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ input: "1716000000" }),
});
const data = await res.json();
const { data } = await axios.post(
  'https://api.whittly.dev/v1/timestamp/convert',
  { input: "1716000000" },
  { headers: { Authorization: 'Bearer ' + apiKey } }
);
// probulk conversionpro·history syncproupgrade →
// history
Pro Cloud Sync — upgrade
no operations yet