# Vercel Flags is now in public beta

**Published:** February 11, 2026 | **Authors:** Dominik Ferber, Luis Meyer, Andy Schneider, Vincent Derks, William Bout, Chris Widmaier

---

[Vercel Flags](https://vercel.com/docs/flags/vercel-flags) is a feature flag provider built into the Vercel platform. It lets you create and manage feature flags with targeting rules, user segments, and environment controls directly in the Vercel Dashboard.

The Flags SDK provides a framework-native way to define and use these flags within Next.js and SvelteKit applications, integrating directly with your existing codebase:

**flags.ts**
```typescript
import { vercelAdapter } from "@flags-sdk/vercel"
import { flag } from 'flags/next'; 
export const showNewFeature = flag({  
    key: 'show-new-feature',  
    description: 'Show the new dashboard redesign',
    adapter: vercelAdapter()
});
```

And you can use them within your pages like:

**app/page.tsx**
```tsx
import { showNewFeature } from "~/flags"
export default async function Page() {  
  const isEnabled = await showNewFeature()

  return isEnabled ? <NewDashboard /> : <OldDashboard />
}
```

For teams using other frameworks or custom backends, the Vercel Flags adapter supports the [OpenFeature](https://vercel.com/docs/flags/vercel-flags/sdks/openfeature) standard, allowing you to combine feature flags across various systems and maintain consistency in your flag management approach:

**app.ts**
```typescript
import { OpenFeature } from '@openfeature/server-sdk';
import { VercelProvider } from '@vercel/flags-core/openfeature';

// Set up the provider and client
await OpenFeature.setProviderAndWait(new VercelProvider());
const client = OpenFeature.getClient();

// Evaluate flags
const enabled = await client.getBooleanValue('show-new-feature');
```

Vercel Flags is priced at $30 per 1 million [flag requests](https://vercel.com/docs/flags/vercel-flags/limits-and-pricing#flag-requests) ($0.00003 per event), where a flag request is any request to your application that reads the underlying flags configuration. A single request evaluating multiple feature flags of the same source project still counts as one flag request.

> Vercel Flags transformed our feature access management. Rules and segments let non-technical stakeholders manage access groups through a simple interface—no more developer bottlenecks. Game changer for our team.
> — Dan Richfield, FGS Global

Vercel Flags is now in beta and available to teams on all plans.

[Learn more about Vercel Flags](https://vercel.com/docs/flags/vercel-flags) to get started with feature flag management.

---

📚 **More updates:** [View all changelog entries](/changelog/sitemap.md) | [Blog](/blog/sitemap.md)