Skip to content
Menu
 

Client Uploads with Vercel Blob

Last updated February 26, 2026

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:

Terminal
pnpm i @vercel/blob
    1. Go to your project's Storage section in the sidebar
    2. Select Create Database, then choose Blob
    3. Select Continue, then set the access to Private or Public
    4. Use the name "Images" and select Create a new Blob store
    5. 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.

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

    • BLOB_READ_WRITE_TOKEN

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

    vercel env pull

When you need to upload files larger than 4.5 MB, you can use client uploads. The file goes directly from the browser to Vercel Blob, secured by a token exchange between your server and Vercel Blob.

You must authenticate and authorize users in the onBeforeGenerateToken callback of your server route before generating a client token. Without authentication, anyone can upload files to your Blob store. See authenticating client uploads for details.

  1. This page allows you 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.

    src/app/avatar/upload/page.tsx
    'use client';
     
    import { type PutBlobResult } from '@vercel/blob';
    import { upload } from '@vercel/blob/client';
    import { useState, useRef } from 'react';
     
    export default function AvatarUploadPage() {
      const inputFileRef = useRef<HTMLInputElement>(null);
      const [blob, setBlob] = useState<PutBlobResult | null>(null);
      return (
        <>
          <h1>Upload Your Avatar</h1>
     
          <form
            onSubmit={async (event) => {
              event.preventDefault();
     
              if (!inputFileRef.current?.files) {
                throw new Error('No file selected');
              }
     
              const file = inputFileRef.current.files[0];
     
              const newBlob = await upload(file.name, file, {
                access: 'private' /* or 'public' */,
                handleUploadUrl: '/api/avatar/upload',
              });
     
              setBlob(newBlob);
            }}
          >
            <input name="file" ref={inputFileRef} type="file" required />
            <button type="submit">Upload</button>
          </form>
          {blob && (
            <div>
              Blob url: <a href={blob.url}>{blob.url}</a>
            </div>
          )}
        </>
      );
    }
    app/avatar/upload/page.jsx
    'use client';
     
    import { upload } from '@vercel/blob/client';
    import { useState, useRef } from 'react';
     
    export default function AvatarUploadPage() {
      const inputFileRef = useRef(null);
      const [blob, setBlob] = useState(null);
      return (
        <>
          <h1>Upload Your Avatar</h1>
     
          <form
            onSubmit={async (event) => {
              event.preventDefault();
     
              const file = inputFileRef.current.files[0];
     
              const newBlob = await upload(file.name, file, {
                access: 'private' /* or 'public' */,
                handleUploadUrl: '/api/avatar/upload',
              });
     
              setBlob(newBlob);
            }}
          >
            <input
              name="file"
              ref={inputFileRef}
              type="file"
              accept="image/jpeg, image/png, image/webp"
              required
            />
            <button type="submit">Upload</button>
          </form>
          {blob && (
            <div>
              Blob url: <a href={blob.url}>{blob.url}</a>
            </div>
          )}
        </>
      );
    }
    pages/avatar/upload.tsx
    import { type PutBlobResult } from '@vercel/blob';
    import { upload } from '@vercel/blob/client';
    import { useState, useRef } from 'react';
     
    export default function AvatarUploadPage() {
      const inputFileRef = useRef<HTMLInputElement>(null);
      const [blob, setBlob] = useState<PutBlobResult | null>(null);
      return (
        <>
          <h1>Upload Your Avatar</h1>
     
          <form
            onSubmit={async (event) => {
              event.preventDefault();
     
              if (!inputFileRef.current?.files) {
                throw new Error('No file selected');
              }
     
              const file = inputFileRef.current.files[0];
     
              const newBlob = await upload(file.name, file, {
                access: 'private' /* or 'public' */,
                handleUploadUrl: '/api/avatar/upload',
              });
     
              setBlob(newBlob);
            }}
          >
            <input
              name="file"
              ref={inputFileRef}
              type="file"
              accept="image/jpeg, image/png, image/webp"
              required
            />
            <button type="submit">Upload</button>
          </form>
          {blob && (
            <div>
              Blob url: <a href={blob.url}>{blob.url}</a>
            </div>
          )}
        </>
      );
    }
    pages/avatar/upload.jsx
    import { upload } from '@vercel/blob/client';
    import { useState, useRef } from 'react';
     
    export default function AvatarUploadPage() {
      const inputFileRef = useRef(null);
      const [blob, setBlob] = useState(null);
      return (
        <>
          <h1>Upload Your Avatar</h1>
     
          <form
            onSubmit={async (event) => {
              event.preventDefault();
     
              const file = inputFileRef.current.files[0];
     
              const newBlob = await upload(file.name, file, {
                access: 'private' /* or 'public' */,
                handleUploadUrl: '/api/avatar/upload',
              });
     
              setBlob(newBlob);
            }}
          >
            <input
              name="file"
              ref={inputFileRef}
              type="file"
              accept="image/jpeg, image/png, image/webp"
              required
            />
            <button type="submit">Upload</button>
          </form>
          {blob && (
            <div>
              Blob url: <a href={blob.url}>{blob.url}</a>
            </div>
          )}
        </>
      );
    }
  2. The responsibility of this client upload route is to:

    1. Authenticate and authorize the user making the upload request
    2. Generate tokens for client uploads
    3. Listen for completed client uploads, so you can update your database with the URL of the uploaded file for example

    The @vercel/blob npm package exposes a helper to implement said responsibilities.

    src/app/api/avatar/upload/route.ts
    import { handleUpload, type HandleUploadBody } from '@vercel/blob/client';
    import { NextResponse } from 'next/server';
     
    export async function POST(request: Request): Promise<NextResponse> {
      const body = (await request.json()) as HandleUploadBody;
     
      try {
        const jsonResponse = await handleUpload({
          body,
          request,
          onBeforeGenerateToken: async (
            pathname,
            /* clientPayload */
          ) => {
            // Authenticate users before generating the token
            // const session = await auth();
            // if (!session) throw new Error('Not authenticated');
     
            return {
              allowedContentTypes: ['image/jpeg', 'image/png', 'image/webp'],
              addRandomSuffix: true,
              tokenPayload: JSON.stringify({
                // Store the authenticated user's ID so you can use it
                // in onUploadCompleted
                // userId: session.user.id,
              }),
            };
          },
          onUploadCompleted: async ({ blob, tokenPayload }) => {
            // Called by Vercel Blob when the client upload completes
            // Use tools like ngrok if you want this to work locally
     
            console.log('blob upload completed', blob, tokenPayload);
     
            try {
              // Run any logic after the file upload completed
              // const { userId } = JSON.parse(tokenPayload);
              // await db.update({ avatar: blob.url, userId });
            } catch (error) {
              throw new Error('Could not update user');
            }
          },
        });
     
        return NextResponse.json(jsonResponse);
      } catch (error) {
        return NextResponse.json(
          { error: (error as Error).message },
          { status: 400 }, // The webhook will retry 5 times waiting for a 200
        );
      }
    }
    src/app/api/avatar/upload/route.js
    import { handleUpload } from '@vercel/blob/client';
    import { NextResponse } from 'next/server';
     
    export async function POST(request) {
      const body = await request.json();
     
      try {
        const jsonResponse = await handleUpload({
          body,
          request,
          onBeforeGenerateToken: async (pathname /*, clientPayload */) => {
            // Authenticate users before generating the token
            // const session = await auth();
            // if (!session) throw new Error('Not authenticated');
     
            return {
              allowedContentTypes: ['image/jpeg', 'image/png', 'image/webp'],
              addRandomSuffix: true,
              tokenPayload: JSON.stringify({
                // Store the authenticated user's ID so you can use it
                // in onUploadCompleted
                // userId: session.user.id,
              }),
            };
          },
          onUploadCompleted: async ({ blob, tokenPayload }) => {
            // Called by Vercel Blob when the client upload completes
            // Use tools like ngrok if you want this to work locally
     
            console.log('blob upload completed', blob, tokenPayload);
     
            try {
              // Run any logic after the file upload completed
              // const { userId } = JSON.parse(tokenPayload);
              // await db.update({ avatar: blob.url, userId });
            } catch (error) {
              throw new Error('Could not update user');
            }
          },
        });
     
        return NextResponse.json(jsonResponse);
      } catch (error) {
        return NextResponse.json(
          { error: error.message },
          { status: 400 }, // The webhook will retry 5 times waiting for a status 200
        );
      }
    }
    pages/api/avatar/upload.ts
    import { handleUpload, type HandleUploadBody } from '@vercel/blob/client';
    import type { NextApiResponse, NextApiRequest } from 'next';
     
    export default async function handler(
      request: NextApiRequest,
      response: NextApiResponse,
    ) {
      const body = request.body as HandleUploadBody;
     
      try {
        const jsonResponse = await handleUpload({
          body,
          request,
          onBeforeGenerateToken: async (
            pathname,
            /* clientPayload */
          ) => {
            // Authenticate users before generating the token
            // const session = await auth();
            // if (!session) throw new Error('Not authenticated');
     
            return {
              allowedContentTypes: ['image/jpeg', 'image/png', 'image/webp'],
              addRandomSuffix: true,
              tokenPayload: JSON.stringify({
                // Store the authenticated user's ID so you can use it
                // in onUploadCompleted
                // userId: session.user.id,
              }),
            };
          },
          onUploadCompleted: async ({ blob, tokenPayload }) => {
            // Called by Vercel Blob when the client upload completes
            // Use tools like ngrok if you want this to work locally
     
            console.log('blob upload completed', blob, tokenPayload);
     
            try {
              // Run any logic after the file upload completed
              // const { userId } = JSON.parse(tokenPayload);
              // await db.update({ avatar: blob.url, userId });
            } catch (error) {
              throw new Error('Could not update user');
            }
          },
        });
     
        return response.status(200).json(jsonResponse);
      } catch (error) {
        // The webhook will retry 5 times waiting for a 200
        return response.status(400).json({ error: (error as Error).message });
      }
    }
    pages/api/avatar/upload.js
    import { handleUpload } from '@vercel/blob/client';
     
    export default async function handler(request, response) {
      const body = await request.json();
     
      try {
        const jsonResponse = await handleUpload({
          body,
          request,
          onBeforeGenerateToken: async (pathname /*, clientPayload */) => {
            // Authenticate users before generating the token
            // const session = await auth();
            // if (!session) throw new Error('Not authenticated');
     
            return {
              allowedContentTypes: ['image/jpeg', 'image/png', 'image/webp'],
              addRandomSuffix: true,
              tokenPayload: JSON.stringify({
                // Store the authenticated user's ID so you can use it
                // in onUploadCompleted
                // userId: session.user.id,
              }),
            };
          },
          onUploadCompleted: async ({ blob, tokenPayload }) => {
            // Called by Vercel Blob when the client upload completes
            // Use tools like ngrok if you want this to work locally
     
            console.log('blob upload completed', blob, tokenPayload);
     
            try {
              // Run any logic after the file upload completed
              // const { userId } = JSON.parse(tokenPayload);
              // await db.update({ avatar: blob.url, userId });
            } catch (error) {
              throw new Error('Could not update user');
            }
          },
        });
     
        return response.status(200).json(jsonResponse);
      } catch (error) {
        // The webhook will retry 5 times waiting for a 200
        return response.status(400).json({ error: error.message });
      }
    }
    api/avatar/upload.ts
    import { handleUpload, type HandleUploadBody } from '@vercel/blob/client';
     
    export default async function handler(request: Request) {
      const body = (await request.json()) as HandleUploadBody;
     
      try {
        const jsonResponse = await handleUpload({
          body,
          request,
          onBeforeGenerateToken: async (
            pathname,
            /* clientPayload */
          ) => {
            // Authenticate users before generating the token
            // const session = await auth();
            // if (!session) throw new Error('Not authenticated');
     
            return {
              allowedContentTypes: ['image/jpeg', 'image/png', 'image/webp'],
              addRandomSuffix: true,
              tokenPayload: JSON.stringify({
                // Store the authenticated user's ID so you can use it
                // in onUploadCompleted
                // userId: session.user.id,
              }),
            };
          },
          onUploadCompleted: async ({ blob, tokenPayload }) => {
            // Called by Vercel Blob when the client upload completes
            // Use tools like ngrok if you want this to work locally
     
            console.log('blob upload completed', blob, tokenPayload);
     
            try {
              // Run any logic after the file upload completed
              // const { userId } = JSON.parse(tokenPayload);
              // await db.update({ avatar: blob.url, userId });
            } catch (error) {
              throw new Error('Could not update user');
            }
          },
        });
     
        return Response.json(jsonResponse);
      } catch (error) {
        return Response.json(
          { error: (error as Error).message },
          { status: 400 }, // The webhook will retry 5 times waiting for a 200
        );
      }
    }
    api/avatar/upload.js
    import { handleUpload } from '@vercel/blob/client';
     
    export default async function handler(request) {
      const body = await request.json();
     
      try {
        const jsonResponse = await handleUpload({
          body,
          request,
          onBeforeGenerateToken: async (pathname /*, clientPayload */) => {
            // Authenticate users before generating the token
            // const session = await auth();
            // if (!session) throw new Error('Not authenticated');
     
            return {
              allowedContentTypes: ['image/jpeg', 'image/png', 'image/webp'],
              addRandomSuffix: true,
              tokenPayload: JSON.stringify({
                // Store the authenticated user's ID so you can use it
                // in onUploadCompleted
                // userId: session.user.id,
              }),
            };
          },
          onUploadCompleted: async ({ blob, tokenPayload }) => {
            // Called by Vercel Blob when the client upload completes
            // Use tools like ngrok if you want this to work locally
     
            console.log('blob upload completed', blob, tokenPayload);
     
            try {
              // Run any logic after the file upload completed
              // const { userId } = JSON.parse(tokenPayload);
              // await db.update({ avatar: blob.url, userId });
            } catch (error) {
              throw new Error('Could not update user');
            }
          },
        });
     
        return Response.json(jsonResponse);
      } catch (error) {
        return Response.json(
          { error: error.message },
          { status: 400 }, // The webhook will retry 5 times waiting for a 200
        );
      }
    }

The onBeforeGenerateToken callback in your server route runs before the SDK generates a client token. You must verify that the requesting user is authenticated and authorized to upload before returning a token. Without this check, your upload route is open to the public.

The following example checks a session before returning a token:

app/api/avatar/upload/route.ts
import { handleUpload, type HandleUploadBody } from '@vercel/blob/client';
import { NextResponse } from 'next/server';
import { auth } from '@/lib/auth';
 
export async function POST(request: Request): Promise<NextResponse> {
  const body = (await request.json()) as HandleUploadBody;
 
  try {
    const jsonResponse = await handleUpload({
      body,
      request,
      onBeforeGenerateToken: async (pathname) => {
        // Verify the user is authenticated
        const session = await auth();
        if (!session) {
          throw new Error('Not authenticated');
        }
 
        return {
          allowedContentTypes: ['image/jpeg', 'image/png', 'image/webp'],
          tokenPayload: JSON.stringify({
            userId: session.user.id,
          }),
        };
      },
      onUploadCompleted: async ({ blob, tokenPayload }) => {
        const { userId } = JSON.parse(tokenPayload);
        // Update your database with the blob URL for the authenticated user
      },
    });
 
    return NextResponse.json(jsonResponse);
  } catch (error) {
    return NextResponse.json(
      { error: (error as Error).message },
      { status: 400 },
    );
  }
}

When implementing authentication:

  • Check the user's session or token inside onBeforeGenerateToken
  • Throw an error if the user isn't authenticated
  • Pass user-identifying data through tokenPayload so you can associate the upload with the user in onUploadCompleted

See the handleUpload SDK reference for all available options.

  1. Run your application locally and visit /avatar/upload 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
    • Open Storage in the sidebar 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 its metadata, download, and delete it from your Vercel Storage Dashboard.

The onUploadCompleted callback is called by Vercel API when a client upload completes. For this to work, @vercel/blob 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:

  • VERCEL_BRANCH_URL in preview environments
  • VERCEL_URL in preview environments where VERCEL_BRANCH_URL is not set
  • VERCEL_PROJECT_PRODUCTION_URL in production environments

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

When running your application locally, the onUploadCompleted 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 VERCEL_BLOB_CALLBACK_URL environment variable in your .env.local file when using Next.js:

VERCEL_BLOB_CALLBACK_URL=https://abc123.ngrok-free.app

Was this helpful?