Skip to content
← Back to Changelog

Monday, May 1st 2023

Introducing Vercel Blob

Posted by

Avatar for vvoyer

Vincent Voyer

Software Engineer

Avatar for ethomson

Edward Thomson

Director of Product, Ship

Avatar for dob

Dom Busser

Director of Engineering

Avatar for fabiobenedetti

Fabio Benedetti

Software Engineer

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.

Post