Skip to content
Dashboard

Custom tags available in beta on Vercel Sandbox

Software Engineer

Link to headingOrganize by environment, team, or customer

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

Link to headingUpdate tags as context changes

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

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

Link to headingUse Cases

Ready to deploy?