# subnet-start-schedule (/docs/query/subnet-start-schedule)

All values are block numbers: the subnet can start once the current block
reaches `earliest_start_block` (registration block plus the chain's delay).

**Category:** Subnets

## Parameters [#parameters]

| Parameter | Type    | Description      |
| --------- | ------- | ---------------- |
| `netuid`  | integer | Subnet to query. |

## CLI [#cli]

```bash
btcli query subnet-start-schedule --netuid <integer> --json
```

## Python [#python]

```python
import bittensor as sub

async with sub.Client("finney") as client:
    result = await client.read("subnet_start_schedule", netuid=1)
```
