> For the complete documentation index, see [llms.txt](https://earnbit.gitbook.io/earnbit/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://earnbit.gitbook.io/earnbit/developers/exchange-api-documentation/public-methods-or-websoket/system-time.md).

# System Time

#### Method

```javascript
server.time
```

#### Request Example

```javascript
{
  "method":"server.time",
  "params":[],
  "id":1
}

```

#### Response "params" parameters

| Name |   Type  | Desciption                       |
| :--: | :-----: | -------------------------------- |
| time | NUMERIC | Current time in TimeStamp format |

#### Response Example

```javascript
{
    "id": 0,
    "params": [],
    "result": 1727259949,
    "error": null
}
```
