# block-time (/docs/query/block-time)

**Category:** Chain

## Parameters [#parameters]

This read takes no parameters.

## CLI [#cli]

```bash
btcli query block-time --json
```

## Python [#python]

Namespace method (autocomplete, signature help):

```python
import bittensor as bt

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

Or dispatch by name, as an agent would:

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

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