Server Time Service API
URL : https://time.inforvation.systems
| URL | METHOD | Desc | Detail |
|---|---|---|---|
/servertime |
GET | Get time from Server | Click |
Server Time
URL : https://time.inforvation.systems/servertime
curl -X GET \
https://time.inforvation.systems/servertime \
AJAX Example
var settings = {
"async": true,
"crossDomain": true,
"url": "https://time.inforvation.systems/servertime",
"method": "GET",
"headers": {}
}
$.ajax(settings).done(function (response) {
console.log(response);
});
NodeJS Request Example
npm install request
var request = require("request");
var options = { method: 'GET',
url: 'https://time.inforvation.systems/servertime',
headers: { }
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
Response Example
1576569355958