This endpoint returns the current server time as a Unix timestamp in seconds. Use this endpoint to synchronize your local time with the server, which is essential for generating valid request signatures that include timestamps.
curl https://clob.kuest.com/time```bash## Response<ResponseField name="time" type="integer" required> Unix timestamp in seconds representing the current server time.</ResponseField>### Response Example```json1735560942```bash## Use Cases- Synchronize client time with server time- Generate accurate timestamps for authenticated API requests- Validate request timing and detect clock drift## Notes- The timestamp is returned as a Unix epoch time in seconds- This endpoint does not require authentication- Response time is typically under 50ms