Time

GET /time

Retrieve the time of the server. Useful for testing API connectivity.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • code integer

      Response code

    • msg string

      Diagnostic message

    • result number

      UNIX timestamp (milliseconds)

  • 503

    Error

    Hide response attributes Show response attributes object
GET /time
curl \
 -X GET https://api.everstrike.io/time
Response examples (200)
{
  "code": 200,
  "msg": "string",
  "result": 1550924138856
}
Response examples (503)
{
  "code": 503,
  "msg": "Invalid request",
  "result": {}
}