https://github.com/marvin9/api-timestamp
freecodecamp project. API gives object of unix and utc timestamp of given day.
https://github.com/marvin9/api-timestamp
api cakewalk fcc koa2 timestamp
Last synced: 26 days ago
JSON representation
freecodecamp project. API gives object of unix and utc timestamp of given day.
- Host: GitHub
- URL: https://github.com/marvin9/api-timestamp
- Owner: Marvin9
- Created: 2019-07-20T17:42:07.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-20T18:03:12.000Z (almost 7 years ago)
- Last Synced: 2025-01-09T05:31:36.184Z (over 1 year ago)
- Topics: api, cakewalk, fcc, koa2, timestamp
- Language: HTML
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# api-timestamp
freecodecamp project. API gives object of unix and utc timestamp of given day.
## API ENDPOINT
```
GET /api/timestamp/:datestring
GET /api/timestamp (Current timestamp)
```
## datestring FORMAT
***yyyy-m-d*** (2014-10-5)
***yyyy-m*** (2014-10)
***d-m-yyyy*** (5-10-2014)
***Unix time*** (1412121600000)
## JSON Object :
```
{
"unix" : ,
"utc" :
}
```
## [Try Here](https://marvin9-api-timestamp.glitch.me/)