# place.stream.server.getServerTime

> Published by [did:web:longos.iameli.link](https://lexicon.garden/identity/did:web:longos.iameli.link)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.server.getServerTime)
- [Documentation](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.server.getServerTime/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.server.getServerTime/examples)

## Definitions

### `place.stream.server.getServerTime`

**Type**: `query`

Get the current server time for client clock synchronization

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `serverTime` | `string` (datetime) | Yes | Current server time in RFC3339 format |

## Raw Schema

```json
{
  "id": "place.stream.server.getServerTime",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "serverTime"
          ],
          "properties": {
            "serverTime": {
              "type": "string",
              "format": "datetime",
              "description": "Current server time in RFC3339 format"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {}
      },
      "description": "Get the current server time for client clock synchronization"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
