Skip to content
Dashboard

Introducing Spend Management

VP of Developer Experience

Realtime Usage Alerts, SMS Notifications, and Automatic Project Pausing

Link to headingMore confidence with Spend Management

Link to headingWhat is Spend Management?

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.

Link to headingUpdates to Vercel Functions

Link to headingRun Functions for up to five minutes

Link to headingWhat's next for Spend Management