# crowdloan (/docs/query/crowdloan)

Amounts are TAO; `end` is the block number at which contributions close.

**Category:** Leases & crowdloans

## Parameters [#parameters]

| Parameter      | Type    | Description                     |
| -------------- | ------- | ------------------------------- |
| `crowdloan_id` | integer | Id of the crowdloan to look up. |

## CLI [#cli]

```bash
btcli query crowdloan --crowdloan-id <integer> --json
```

## Python [#python]

```python
import bittensor as sub

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