# tx-rate-limit (/docs/query/tx-rate-limit)

**Category:** Chain

## Parameters [#parameters]

This read takes no parameters.

## CLI [#cli]

```bash
btcli query tx-rate-limit --json
```

## Python [#python]

Typed namespace method (autocomplete, signature help):

```python
import bittensor as sub

async with sub.Client("finney") as client:
    result = await client.chain.tx_rate_limit()
```

Or dispatch by name, as an agent would:

```python
result = await client.read("tx_rate_limit")
```
