API Documentation

Simple, fast, and free programmatic timestamp conversion.

Coming Soon

We are currently building out a public REST API for high-performance timestamp conversions and timezone data lookups.

GET /api/v1/convert?timestamp=1715356800&to=iso

Subscribe to our newsletter or follow us on GitHub to be notified when the API goes live.

Client-Side Usage

Since Unixly is built for speed, most of our utilities are available as open-source JavaScript modules that you can use in your own projects.

// Example: Getting current Unix Timestamp
const now = Math.floor(Date.now() / 1000);

// Example: ISO to Unix
const unix = Math.floor(new Date('2024-05-10T21:00:00Z').getTime() / 1000);