Page cover

Service Time

auth not required

Time

This endpoint is used to retrieve the current time from the server.

This endpoint is typically used for:

Synchronization: The client might want to synchronize its internal clock with the server's clock to ensure that all timestamps are accurate and consistent across all services.

Timing: The client might want to use the server's time as a reference point for timing events or measuring elapsed time.

GET /api/v1/{service}/time

The time endpoint exists on all services and may be used to fetch additional information as needed.

Example

GET /api/v1/routing/time
{
    "iso8601": "2023-02-22T03:09:39.8111051Z",
    "milliseconds": 1677035379811,
    "status": "ok",
    "httpStatusCode": 200
}

Last updated