---
title: "Deletion improvements with Netlify Blobs | Netlify Changelog"
description: "Get the latest updates on Netlify products and features to meet your developer needs."
source: "https://www.netlify.com/changelog/blobs-ui-improve/"
last_updated: "2026-07-15T19:16:30.000Z"
---
You now have more options for deleting an entire store or individual entries in Netlify blobs. You can also group blob stores by project or deploy in your Netlify dashboard.

### Delete with Blobs API

Using the Blobs API, you can use the new `deleteAll` method:

```
import { getStore } from "@netlify/blobs";
const uploads = getStore("file-uploads");
const { deletedBlobs } = await uploads.deleteAll();
console.log(`${ deletedBlobs } blobs were 💥`);
```

Learn more in the [Blobs API docs](https://docs.netlify.com/build/data-and-storage/netlify-blobs/#api-reference).

### Delete and manage in dashboard

From your Netilfy dashboard, you can do the following:

-   delete individual entries
-   delete entire stores in one go

You can also group blob stores by project or deploy.

Learn more in our [Blobs docs](https://docs.netlify.com/build/data-and-storage/netlify-blobs).