Core
API v2.x
2

now #

Returns the current server timestamp, in Epoch-millis format.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_now
Method: GET

Other protocols #

Copied to clipboard!
{
  "controller": "server",
  "action": "now"
}

Response #

Returns a now property containing the server timestamp, in Epoch-millis format.

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "controller": "server",
  "action": "now",
  "requestId": "<unique request identifier>",
  "result": {
    "now": 1447151167622
  }
}