Skip to content
Dashboard

Introducing Spend Management

VP of Developer Experience

Realtime Usage Alerts, SMS Notifications, and Automatic Project Pausing

Copy link to headingMore confidence with Spend Management

Copy link to headingWhat is Spend Management?

Copy link to headingReceiving notifications

app/api/pause/route.ts
export async function POST(request: Request) {
await fetch('https://api.vercel.com/v1/projects/<project-id>/pause?teamId=<team-id>', {
headers: {
Authorization: 'Bearer <your-token>',
'Content-Type': 'application/json'
},
method: 'POST'
});
return new Response('Project paused');
}

You can programmatically pause Vercel projects using our new REST API endpoint.

Copy link to headingUpdates to Vercel Functions

Copy link to headingRun Functions for up to five minutes

Copy link to headingWhat's next for Spend Management

Ready to deploy?