Deploy and scale frontend & serverless apps
Use Vercel's platform API for deployments, environment management, and edge functions — all credentials managed by Keystore.
Use Vercel through Keystore with zero code changes. Keys are resolved from the vault and injected at request time.
import Keystore from "@keystore/sdk";
const ks = new Keystore({ agentToken: process.env.KS_TOKEN! });
ks.interceptAll();
const res = await fetch("https://api.vercel.com/v6/deployments", {
headers: { Authorization: "Bearer placeholder" },
});
const deployments = await res.json();
console.log(deployments);Get started in minutes. Your credentials are encrypted and never exposed to your agent code.
Get Started