> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wandb.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# How can I delete multiple runs in bulk instead of one at a time?

From the **Runs** tab in your Workspace, select the checkbox next to each run to delete, then click **Delete**.

To filter runs by a condition rather than selecting them manually, use the [public API](/models/ref/python/public-api/api) to delete multiple runs in a single operation. Replace `[ENTITY]` and `[PROJECT]` with your entity and project names, and replace `[CONDITION]` with a Python expression that evaluates to `True` for runs you want to delete:

```python theme={null}
import wandb

api = wandb.Api()
runs = api.runs('[ENTITY]/[PROJECT]')
for run in runs:
    if [CONDITION]:
        run.delete()
```

***

<Badge stroke shape="pill" color="orange" size="md">[Projects](/support/models/tags/projects)</Badge><Badge stroke shape="pill" color="orange" size="md">[Runs](/support/models/tags/runs)</Badge>
