Introducing Vercel Blob

Authors

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 const runtime = 'edge';
export async function PUT(request: Request) {
const { url } = await put('avatars/user-12345.png', request.body, { access: 'public' });
return Response.json({ url });
}

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

Check out our documentation to learn more.