Skip to content
Dashboard

Custom tags available in beta on Vercel Sandbox

Software Engineer

Copy link to headingOrganize by environment, team, or customer

const sandbox = await Sandbox.create({
name: "my-sandbox",
tags: { env: "staging" },
});

Copy link to headingUpdate tags as context changes

await sandbox.update({
tags: { env: "production", team: "infra" },
});

Copy link to headingEasily track your sandboxes

const productionSandboxes = await Sandbox.list({
tags: { env: "production" },
});
console.log(
"Production sandboxes:",
productionSandboxes.sandboxes.map((s) => s.name),
); // my-sandbox

Copy link to headingUse Cases

Ready to deploy?