Vercel — AI · · 1 min read

Vercel Sandbox can now run for up to 24 hours

Mirrored from Vercel — AI for archival readability. Support the source by reading on the original site.

1 min read

16 Jun 2026

Vercel Sandboxes can run uninterrupted sessions for up to 24 hours (up from 5 hours). This new max duration unlocks workloads that require longer runtimes, such as large-scale data processing, end-to-end testing pipelines, and long-lived agentic workflows.

import { Sandbox } from '@vercel/sandbox';
const sandbox = await Sandbox.create({
// 24 hours timeout
timeout: 24 * 60 * 60 * 1000,
});

Pair with persistent sandboxes to maintain durable state across extended runs.

The 24 hour max duration is available on all Pro and Enterprise plans. Learn more about limits in the documentation.

Discussion (0)

Sign in to join the discussion. Free account, 30 seconds — email code or GitHub.

Sign in →

No comments yet. Sign in and be the first to say something.

More from Vercel — AI