# crowdloan-contributors (/docs/query/crowdloan-contributors)

**Category:** Leases & crowdloans

## Parameters [#parameters]

| Parameter      | Type    | Description                                     |
| -------------- | ------- | ----------------------------------------------- |
| `crowdloan_id` | integer | Id of the crowdloan whose contributors to list. |

## CLI [#cli]

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

## Python [#python]

```python
import bittensor as sub

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