-
A request to /api?time=1622937600000 with a valid date is return a JSON object with a unix key that is a Unix timestamp of the input date in milliseconds
-
A request to /api?time=2015-12-25 with a valid date is return a JSON object with a utc key that is a string of the input date in the format: 2021-06-06
Demo : https://timestampservice-p5kansw7dq-ey.a.run.app/converter/api?time=1622937600000
http://localhost:3000/converter/api?time=1622937600
{"unix":"1622937600000","utc":"2021-06-06T00:00:00.000+00:00"}
http://localhost:3000/converter/api?time=1622937600000
Reseponse
{"unix":"1622937600000","utc":"2021-06-06T00:00:00.000+00:00"}
http://localhost:3000/converter/api?time=2021-06-06
Reseponse
{"unix":"1622937600000","utc":"2021-06-06T00:00:00.000+00:00"}