# timestamp (/docs/query/timestamp)

**Category:** Chain

## Parameters [#parameters]

This read takes no parameters.

## CLI [#cli]

```bash
btcli query timestamp --json
```

## Python [#python]

Namespace method (autocomplete, signature help):

```python
import bittensor as bt

sub = bt.Subtensor()
result = sub.chain.timestamp()
```

Or dispatch by name, as an agent would:

```python
result = sub.read("timestamp")
```

Async is the same surface awaited: `async with bt.Subtensor() as client:`.
