Skip to main content
GET
/
time
Get Server Time
curl --request GET \
  --url https://clob.kuest.com/time

Overview

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.

Request

No authentication or parameters required.
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

```json
1735560942
```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

Build docs developers (and LLMs) love