Deletion improvements with Netlify Blobs

November 6, 2025

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.

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.