Timestamp Microservice

Takes a date string and returns the parsed date's UNIX and UTC timestamp representations.

Try it out!

Today's Date

Show today's date, ...

Run /api

Natural Date

Pass in a naturally-read date, like "May 14 2022".

Run /api/May%2014%202022

UNIX Timestamp

Pass in a number representing a date's UNIX timestamp, like 1652500800000 for May 14th, 2022.

Run /api/1652500800000

Try It Yourself

In the address bar, at the end of the address, type in '/api/', and then a string or number that can be parsed as a JavaScript Date object.

More on Date