Menu
Important
Stay updated on React2Shell

Client Uploads with Vercel Blob

Last updated September 17, 2025

Vercel Blob is available on all plans

Those with the owner, member, developer role can access this feature

In this guide, you'll learn how to do the following:

  • Use the Vercel dashboard to create a Blob store connected to a project
  • Upload a file using the Blob SDK from a browser

Vercel Blob works with any frontend framework. First, install the package:

  1. Navigate to the Project you'd like to add the blob store to. Select the Storage tab, then select the Connect Database button.

    Under the Create New tab, select Blob and then the Continue button.

    Use the name "Images" and select Create a new Blob store. Select the environments where you would like the read-write token to be included. You can also update the prefix of the Environment Variable in Advanced Options

    Once created, you are taken to the Vercel Blob store page.

  2. Since you created the Blob store in a project, we automatically created and added the following Environment Variable to the project for you.

    To use this Environment Variable locally, we recommend pulling it with the Vercel CLI:

When you need to upload files larger than 4.5 MB, you can use client uploads. In this case, the file is sent directly from the client (a browser in this example) to Vercel Blob. This transfer is done securely as to not expose your Vercel Blob store to anonymous uploads. The security mechanism is based on a token exchange between your server and Vercel Blob.

  1. This page allows to upload files to Vercel Blob. The files will go directly from the browser to Vercel Blob without going through your server.

    Behind the scenes, the upload is done securely by exchanging a token with your server before uploading the file.

  2. The responsibility of this client upload route is to:

    1. Generate tokens for client uploads
    2. Listen for completed client uploads, so you can update your database with the URL of the uploaded file for example

    The npm package exposes a helper to implement said responsibilities.

  1. Run your application locally and visit to upload the file to your store. The browser will display the unique URL created for the file.

    • Go to the Vercel Project where you created the store
    • Select the Storage tab and select your new store
    • Paste the blob object URL returned in the previous step in the Blob URL input box in the Browser section and select Lookup
    • The following blob object metadata will be displayed: file name, path, size, uploaded date, content type and HTTP headers
    • You also have the option to download and delete the file from this page

You have successfully uploaded an object to your Vercel Blob store and are able to review it's metadata, download, and delete it from your Vercel Storage Dashboard.

The callback is called by Vercel API when a client upload completes. For this to work, computes the correct callback URL to call based on the environment variables of your project.

We use the following environment variables to compute the callback URL:

  • in preview environments
  • in preview environments where is not set
  • in production environments

These variables are automatically set by Vercel through System Environment Variables. If you're not using System Environment Variables, use the option at the step in .

When running your application locally, the callback will not work as Vercel Blob cannot contact your localhost. Instead, we recommend you run your local application through a tunneling service like ngrok, so you can experience the full Vercel Blob development flow locally.

When using ngrok in local development, you can configure the domain to call for onUploadCompleted by using the environment variable in your file when using Next.js:


Was this helpful?

supported.