Introducing Vercel Blob

Authors

1 min read

Vercel Blob is a fast, easy, and efficient solution for storing files in the cloud.

The Vercel Blob API works with any framework. It can be securely called from Edge and Serverless Functions and returns an immutable URL that can be exposed to visitors or put into storage.

app/profile/route.ts
import { put } from '@vercel/blob';
export async function PUT(request: Request) {
const form = await request.formData();
const file = form.get('file') as File;
const blob = await put('avatars/user-42.png', file, { access: 'public' });
return Response.json(blob);
}

Vercel Blob is in private beta. Join the waitlist to get early access in the coming weeks.

Check out our documentation to learn more.