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

# Delete dataset

> Deletes a dataset and all its entries.

Permanently deletes a dataset and all its entries.

**Path parameters:**

| Parameter    | Description |
| :----------- | :---------- |
| `dataset_id` | Dataset ID  |

```bash theme={null}
curl -X DELETE https://api.allium.so/api/v1/beam/datasets/${DATASET_ID} \
  -H "X-API-Key: ${ALLIUM_API_KEY}"
```

Returns `204 No Content` on success.

<Warning>
  This action is irreversible. All entries stored in the dataset will be permanently deleted.
</Warning>
