# Unleash

> Unleash is an open source feature management platform for controlling software releases with feature flags, gradual rollouts, kill switches, and variant-based experiments; its backend SDKs cache the full flag configuration in memory and evaluate activation strategies locally so end user data never leaves your application, and it is available as a $75 per seat pay-as-you-go cloud, a quoted enterprise plan with cloud, self-hosted, or hybrid deployment, and a free self-hosted open source build.

- Category: Product Analytics & Session Replay (https://saastracker.org/categories/product-analytics)
- Website: https://www.getunleash.io
- Starting price: $75 per seat per month (Pay-As-You-Go cloud)
- Free plan: No free hosted tier. The free path is the self-hosted open source build, which you run yourself with community support.
- Free trial: 14 days, no credit card required
- Founded: 2019, HQ: Oslo, Norway, Ownership: Venture-backed, privately held (legal entity Bricks Software AS)
- Profile last reviewed: 2026-08-22
- Canonical profile: https://saastracker.org/products/unleash

## Overview

Unleash started in 2014 as a side project. Ivar Conradi Østhus, an engineer at the Norwegian classifieds site FINN.no, needed a way to manage feature releases and built one in his own time, releasing it on GitHub the following year. It stayed a community project for several years before he and his brother Egil Østhus turned it into a company in 2019, trading as Bricks Software AS out of Oslo. That origin explains the shape of the product: it was built by people who had to operate it in production before anyone tried to sell it.

The architectural choice that defines Unleash is where evaluation happens. Backend SDKs fetch the complete flag configuration and cache it in memory, then apply activation strategies locally at nanosecond speed with no per-decision network call. The practical consequence, and the one Unleash leads with, is that no user data is shared with the Unleash server at all. For a European company under GDPR, this is a materially different posture from vendors who require you to send identity attributes to their API to get an answer back.

Commercially it has moved upmarket. A $14M Series A in March 2022 was followed by a $35M Series B in March 2026 led by One Peak with Spark Capital, Frontline Ventures, and Firstminute Capital participating, taking total funding to $51.5M. The company reports over 500 paying customers, annual recurring revenue doubling for three consecutive years, net revenue retention around 140 percent, roughly 13,000 GitHub stars, and 35 million or more downloads, with customers including Lloyds Banking Group, Prudential, Wayfair, and Lenovo. Those are enterprise logos, and the pricing reflects it.

For a small business the calculus is specific. The cloud plan is $75 per seat per month, which is the most expensive self-serve seat in this comparison set, but the plan is not stingy: 53 million API requests a month are included, and SSO, role based access control, four-eyes approvals, audit logs, and data residency in the US or EU are in the base plan rather than gated behind an enterprise tier. Compared with Flagsmith, where the same governance features start at $250 a month, a two or three person team gets a more complete product for a similar total. Compared with GrowthBook at $40 a seat, you get better flag operations and much weaker statistics.

## How it works

1. You run or subscribe to an Unleash API server, which holds flags organised into projects and environments, and drive it through the admin UI, the API, or a Terraform provider. Every change is written to an event log.

2. Applications connect through an SDK. Backend SDKs for languages including Java, Node, Python, Go, Ruby, PHP, .NET, and Rust download the entire configuration, hold it in memory, and evaluate activation strategies in process. Frontend SDKs for browsers and mobile behave differently: they fetch only the flags already resolved as enabled for a given context, with the evaluation performed server-side or at Unleash Edge, so targeting rules and other users' data are never exposed to the client.

3. Activation strategies decide who sees a flag. The built-in set covers gradual percentage rollout with consistent stickiness, targeting by user id, host, or IP, and constraints over arbitrary context fields, with segments for reusable rule sets and custom strategies for anything unusual. Variants attach payloads and weights to a flag, which is how Unleash serves A/B and multivariate rollouts.

4. Unleash Edge sits between SDKs and the API server as a lightweight caching layer, absorbing thousands of connections, cutting latency, and keeping applications working when the upstream is unavailable. It is the piece that makes the architecture viable at consumer scale and it is also self-hostable inside your own perimeter.

5. Around this sit the operational controls: environments so the same flag differs between development and production, change requests requiring a second approver before production changes take effect, role based access control, audit logs retained for up to two years, and flag metrics with 90 day retention showing which flags are actually being evaluated so stale toggles can be found and deleted.

## Best for

Engineering organisations that treat feature flags as production infrastructure and need governance, approvals, audit trails, and a privacy model where user data never reaches the vendor, including regulated European teams and any team that wants a credible self-hosted path with an enterprise support contract behind it.

## Not the right fit for

- Very small teams optimising purely for cost; at $75 per seat per month the cloud plan is the most expensive self-serve option here, and a three-person team pays $225 a month for what Flagsmith charges $40 to do.
- Teams who want experiment analysis in the same tool; Unleash serves variants and collects impression data, but it is not a statistics engine, so significance, sequential testing, and variance reduction belong to GrowthBook, Statsig, or your analytics vendor.
- Marketing and CRO work; there is no visual editor, no page variant builder, and no way for a non-developer to change what users see.
- Anyone looking for session replay, heatmaps, or product analytics; Unleash has none of those and is on this shelf only because flags and experimentation are bought alongside them.
- Small teams attracted to self-hosting to avoid the seat price; running the API server, Postgres, and Unleash Edge yourself costs engineering time indefinitely, and the enterprise self-hosted plan carries a five seat minimum anyway.

## Features

### Flags and activation strategies

The release control primitives, unlimited on both tiers.

- **Unlimited flags, projects, and environments**: No cap on any tier, so flag count never drives a plan upgrade. Projects group flags by team or product and environments hold independent values for each.
- **Gradual rollout strategy**: Percentage rollouts with consistent stickiness by user id, session id, or a custom field, so ramping from 1 percent to 100 percent never reassigns a user mid-rollout.
- **Constraints and segments**: Rules over arbitrary context fields such as plan, region, app version, or account id, saved as reusable segments and shared across many flags.
- **Custom activation strategies**: Write your own strategy when the built-ins do not express your rule, which is the escape hatch that keeps unusual targeting out of your application code.
- **Variants**: A flag can serve several weighted variants with payloads attached, which is how Unleash runs A/B and multivariate rollouts and how a flag delivers configuration rather than just a boolean.
- **Kill switches**: Because evaluation is a configuration lookup, disabling a failing feature is a toggle that propagates on the next SDK refresh rather than a redeploy.
- **Flag lifecycle and stale flag detection**: Unleash tracks where each flag sits in its lifecycle and surfaces flags that have outlived their purpose, which is the only serious answer to feature flag technical debt.

### Privacy-first evaluation architecture

The reason Unleash gets through data protection reviews other vendors do not.

- **Local evaluation in backend SDKs**: Backend SDKs cache the full flag configuration in memory and apply strategies in process at nanosecond speed, so no user data is shared with the Unleash server and no network call sits in your request path.
- **Frontend SDKs return only resolved flags**: Browser and mobile SDKs receive only the flags already enabled for their context, so targeting rules and other users' segments are never exposed in the client bundle.
- **Unleash Edge**: A lightweight caching layer between SDKs and the API server that handles thousands of connections, reduces upstream load and latency, and keeps serving flags if the main server is unreachable.
- **US and EU data residency**: Residency options in both regions are offered as part of the standard plan rather than an enterprise-only concession.
- **Offline resilience**: Because SDKs hold the configuration in memory and Edge caches it too, an Unleash outage degrades to last known state rather than taking your application down.
- **OpenFeature compatibility**: Providers exist for the vendor-neutral OpenFeature specification, so application code can target a standard interface and the vendor can be replaced without rewriting call sites.

### Governance and change control

Included in the base plan, which is the strongest argument for the price.

- **Change requests with four-eyes approval**: Production flag changes can require a second person to approve before taking effect, which is the control regulated buyers ask about first. Included on both tiers rather than gated.
- **Role based access control**: Project and environment scoped roles with custom root roles, so contractors and junior engineers can be given development access without production rights.
- **Audit logs up to two years**: A complete event log of who changed what and when, retained for up to two years, exportable and available to integrations.
- **SSO via SAML 2.0 and OpenID Connect**: Single sign on is in the standard plan, not reserved for enterprise, which is unusual and materially changes the comparison against Flagsmith and GrowthBook.
- **SOC 2 Type II and GDPR**: Compliance posture stated for both tiers, with the local evaluation architecture doing most of the GDPR work by keeping personal data out of the vendor's systems entirely.
- **Uptime SLA**: 99.9 percent on the pay-as-you-go cloud plan and 99.99 percent on Enterprise, with tiered support response times on the premium support option.

### Measurement and experimentation

Present and useful, but not a statistics engine.

- **Feature flag metrics**: Per-flag evaluation counts showing which flags are being hit and which are dormant, retained for 90 days on both tiers.
- **Impression data**: SDKs can emit an event every time a flag is evaluated, carrying the flag, variant, and context, which is the hook that feeds your analytics tool with exposure data for experiment analysis.
- **A/B and multivariate testing**: Variant weights plus impression data support running tests, with the analysis expected to happen in whichever analytics or experimentation tool you already use.
- **Analytics and observability integrations**: Connections to tools including Datadog, Slack, Jira, Google Analytics, Segment, and webhooks, so flag changes and exposures land where the rest of your telemetry lives.
- **Full-stack experimentation roadmap**: The March 2026 Series B explicitly earmarks investment in end-to-end feature lifecycle management and full-stack experimentation, so the statistics gap is a stated target rather than a settled boundary.

### Deployment and developer surface

Cloud, self-hosted, or hybrid, with 25 or more SDKs.

- **25 or more SDKs**: Official and community SDKs across backend languages including Java, Node, Python, Go, Ruby, PHP, .NET, and Rust, plus frontend and mobile SDKs for JavaScript, React, Android, iOS, and Flutter.
- **Self-hosted deployment**: Run the whole platform on your own infrastructure with Postgres as the datastore, either from the open source build with community support or under an enterprise licence with a five seat minimum.
- **Hybrid deployment**: Enterprise supports a hybrid model where the management plane is hosted and evaluation infrastructure runs in your environment, which is how regulated buyers get support without giving up control.
- **Open source core**: The project remains publicly developed on GitHub with roughly 13,000 stars and 35 million or more downloads, which is the reason it is credible as a long-term dependency.
- **Terraform provider and API**: Flags, projects, environments, and strategies can be declared as code, so flag configuration is reviewable in the same pull request as the feature it gates.
- **Multi-region support**: The platform supports multi-region deployment for organisations that need evaluation infrastructure close to users in several geographies.

## Use cases

- **European fintech under a strict data protection review**: Legal will not approve a US feature flag vendor because targeting requires sending user identifiers and attributes to a third party API. Outcome: Backend SDKs evaluate locally so no user data reaches Unleash at all, EU residency is available on the standard plan, and if that is still not enough the platform is self-hosted with the same SDKs and an enterprise support contract behind it.
- **Platform team supporting fifteen services**: Each service has its own home-grown config toggles, nobody knows which are still in use, and a production change is whoever edits an environment variable first. Outcome: Flags move into projects with environment separation, change requests require a second approver in production, audit logs cover two years, and flag metrics reveal which toggles have not been evaluated in months so they can be deleted.
- **High-traffic consumer app worried about flag latency**: A flag check on the hot path would add a network round trip per request, and an outage at the flag vendor would take the product down. Outcome: Backend SDKs hold the configuration in memory and evaluate in nanoseconds, Unleash Edge absorbs frontend connections and caches configuration, and an upstream outage degrades to last known state rather than an incident.
- **Team running variant rollouts without a statistics platform**: Product wants to try three onboarding flows but there is no experimentation tool and no appetite to buy one this quarter. Outcome: Variants split traffic with weights and payloads, impression data streams exposures into the existing analytics tool, and the analysis happens there. It is not a substitute for a real statistics engine, and the team should be honest with itself about that.

## Pricing

Per-seat pay-as-you-go cloud subscription with a large included API request allowance, plus a quoted Enterprise plan covering cloud, self-hosted, and hybrid deployment, and a free self-hosted open source build.

- **Pay-As-You-Go (Cloud)**: $75 per seat per month. 53 million API requests per month included, then $5 per million; Unlimited flags, projects, environments, and experiments; SSO via SAML 2.0 and OpenID Connect, RBAC, and four-eyes approvals; Audit logs up to two years and 90 day flag metrics retention; US or EU data residency and a 99.9 percent uptime SLA. Bought with a credit card after a 14 day trial. Expensive per seat, but the governance features other vendors reserve for enterprise are all included.
- **Custom Enterprise**: Custom quoted, invoice billed. Cloud, self-hosted, or hybrid deployment; Five seat minimum for self-hosted; Custom API traffic allowance; Standard or premium support with tiered response times and a dedicated customer success manager; 99.99 percent uptime SLA.
- **Open source self-hosted**: $0 plus your own infrastructure cost. Publicly developed codebase on GitHub; Postgres-backed API server you operate; No request metering; Community support only; Enterprise governance features require a commercial licence. The reason Unleash is a defensible long-term dependency: worst case, you keep running it yourself.

Billing notes:

- The cloud meter is seats plus API requests, with 53 million requests a month included and $5 per million after that, which is a far larger allowance than most competitors publish.
- Because backend SDKs evaluate locally by fetching configuration periodically rather than per user, the request meter is driven by service count and refresh interval, not by how many users you have.
- There is no free hosted tier, so evaluation happens either in the 14 day trial or on a self-hosted install.
- The Enterprise self-hosted plan carries a five seat minimum, so a two-person team cannot buy a supported self-hosted licence.
- Seat price is the dominant cost driver. Ten engineers on the cloud plan is $750 a month before any request overage.
- Unlike most competitors, SSO, RBAC, approvals, audit logs, and data residency are in the base plan rather than an upsell, so the effective comparison against a cheaper vendor's enterprise tier is closer than the headline suggests.

Value assessment: Unleash is the expensive option in this set and is unapologetic about it. Modelling a bill is unusually easy because the meter is almost entirely seats: a product with 10,000 monthly users and one with 100,000 monthly users both cost $75 per seat, since backend SDKs poll for configuration rather than asking per user, and 53 million included requests is generous enough that most small businesses will never see an overage line. A three-person team pays $225 a month, a ten-person team pays $750. Set against Flagsmith, where SSO and approvals start at $250 a month, or against GrowthBook, where they are Enterprise-only, a small regulated team that genuinely needs governance may find Unleash competitive on total cost rather than expensive. Set against those same vendors for a team that does not need governance, it is roughly double the price for flag control alone, and the missing statistics engine means you are still buying measurement elsewhere. Value here is entirely a function of whether change control and the no-user-data architecture are requirements or nice to have.

## Strengths

- The privacy architecture is the strongest in the category: backend SDKs evaluate locally and no user data is shared with the Unleash server, which resolves most of a GDPR review before it starts.
- Governance is included rather than upsold. SSO, RBAC, four-eyes approvals, two year audit logs, and US or EU residency are in the $75 base plan.
- Local in-memory evaluation at nanosecond speed plus Unleash Edge caching means flags add no latency and a vendor outage degrades to last known state instead of an incident.
- A genuine open source project with roughly 13,000 GitHub stars, 35 million or more downloads, and eleven years of history, which makes it credible as a long-term dependency.
- Flag lifecycle tracking and stale flag detection tackle feature flag technical debt, a problem most vendors are happy to let you accumulate.
- Deployment flexibility is real: cloud, self-hosted, and hybrid with multi-region support, backed by a company with $51.5M raised and over 500 paying customers.
- Unlimited flags, projects, environments, and experiments on every tier, so nothing about how you organise your work is constrained by the plan.

## Limitations

- At $75 per seat per month the cloud plan is roughly double GrowthBook and many times Flagsmith's small-team price, and there is no free hosted tier at all.
- No experiment statistics. Variants and impression data let you run a test, but significance, sequential testing, and variance reduction have to come from another tool.
- Flag metrics are retained for only 90 days on both tiers, so long-run usage analysis needs exporting.
- No visual editor and no non-developer path, so product and marketing cannot operate it without engineering.
- The enterprise self-hosted plan has a five seat minimum, which excludes the smallest teams from a supported on-premises deployment.
- The company is visibly moving upmarket, with Series B messaging aimed at enterprises shipping AI-driven software; small business buyers should expect the roadmap to be shaped by Lloyds and Prudential rather than by them.
- Self-hosting the open source build means operating a Postgres-backed API server and, at scale, Unleash Edge instances, which is real ongoing work rather than a one-off install.

## Comparisons

- **Unleash vs Flagsmith**: The two open source flag platforms most often shortlisted together. Flagsmith is dramatically cheaper at the small end, $40 a month for three seats against $225 for the same team on Unleash, but puts SSO, approvals, RBAC, and audit logs behind a $250 tier. Unleash includes all of that at $75 a seat and has the stronger privacy architecture and a longer operational track record. Small unregulated teams should take Flagsmith; teams that need change control on day one should price both.
- **Unleash vs GrowthBook**: GrowthBook is $40 a seat and brings a real statistics engine with Bayesian inference, sequential testing, and CUPED, computed against your own warehouse. Unleash is $75 a seat with better flag operations, governance, lifecycle management, and a no-user-data evaluation model, and no statistics at all. If the reason you want flags is to measure, take GrowthBook. If the reason is to release safely under audit, take Unleash.
- **Unleash vs LaunchDarkly**: LaunchDarkly meters on monthly active users and service connections with unlimited seats, which inverts Unleash's per-seat model, and now bundles observability, replay, and error tracking. Unleash is open source, self-hostable, cheaper for small teams, and keeps user data out of the vendor entirely. Large engineering organisations often land cheaper on LaunchDarkly's unlimited seats; European teams with residency constraints usually land on Unleash.
- **Unleash vs Statsig**: Statsig is an experimentation platform with flags attached, metering on analytics events with a very generous free tier and a serious statistics engine. Unleash is flag infrastructure with variants attached and no statistics. They are complementary more often than they are competitive: teams sometimes run Unleash for release control and Statsig for measurement, though most small businesses should pick one and accept the tradeoff.
- **Unleash vs PostHog**: PostHog gives flags, experiments, analytics, and replay on one usage-based bill and costs nothing at small volume, which is hard to argue with for a startup. Unleash is a specialist: better evaluation architecture, better governance, better privacy posture, and a self-hosting story with enterprise support behind it. Choose PostHog for breadth and cost, Unleash when flags are production infrastructure that has to survive an audit.

## Implementation

- Setup time: An hour on the hosted plan: create a project and environments, install a backend SDK, wrap a code path, and ship. Self-hosting is a different order of work, involving a Postgres database, the API server, and usually Unleash Edge in front of it, so budget days rather than hours plus ongoing maintenance.
- Learning curve: Moderate for developers. The concepts of projects, environments, activation strategies, constraints, segments, and variants stack up quickly, and the difference between backend and frontend SDK behaviour is the thing new users most often get wrong. Once understood, the model is more expressive than most competitors.
- Onboarding: Self-serve on the cloud plan with a 14 day trial and no credit card, then a card purchase. Enterprise adds onboarding and, on premium support, a dedicated customer success manager. Documentation is extensive and the open source community answers a lot of questions.
- Migration: OpenFeature provider support means teams already coding against that interface can switch with configuration rather than code changes. Flags and strategies are recreatable through the API or the Terraform provider, and moving between hosted and self-hosted runs the same product. Coming from a vendor whose targeting is expressed differently, the real work is translating rules into activation strategies and constraints. Because Unleash holds no user data, there is no historical user dataset trapped inside it when you leave.

## Platform, API & security

- Platforms: Java, Node, Python, Go, Ruby, PHP, .NET, Rust, JavaScript and React, Android, iOS, Flutter, OpenFeature providers, Unleash Edge
- API: Full admin and client APIs, a Terraform provider for infrastructure as code, webhooks, and impression data events emitted by SDKs on every flag evaluation.
- Compliance: SOC 2 Type II, GDPR
- Data residency: US and EU data residency options are offered on the standard cloud plan. The stronger answer is architectural: backend SDKs evaluate locally so end user data never reaches Unleash's servers regardless of region, and self-hosted or hybrid deployment removes the question entirely.
- SSO: SAML 2.0 and OpenID Connect single sign on are included in the base plan rather than reserved for Enterprise.
- Security notes: Role based access control with custom root roles, change requests requiring four-eyes approval before production changes take effect, and audit logs retained for up to two years. Frontend SDKs receive only resolved flags for their context, so targeting rules are not exposed in client bundles.

## Support

- Channels: Standard support on the cloud plan, Premium support with tiered response times and a dedicated customer success manager on Enterprise, Community Slack and GitHub issues
- Documentation: Comprehensive documentation at docs.getunleash.io covering architecture, backend and frontend SDK differences, Unleash Edge, activation strategies, self-hosting, and governance features.
- Community: Large open source community around a project with roughly 13,000 GitHub stars and more than 35 million downloads, with public development, community SDKs, and an active Slack.

## Company

- Founded: 2019
- Founders: Ivar Conradi Østhus, Egil Østhus
- Headquarters: Oslo, Norway
- Ownership: Venture-backed, privately held (legal entity Bricks Software AS)
- Employees: Public profiles list 11 to 50 (2026)
- Funding: $51.5M raised in total, including a $14M Series A in March 2022 and a $35M Series B in March 2026 led by One Peak with Spark Capital, Frontline Ventures, and Firstminute Capital participating.

Funding history:

- Series A (2022): $14M. Announced March 2022 to commercialise the open source project out of Oslo.
- Series B (2026): $35M. Led by One Peak in March 2026, earmarked for feature lifecycle management and full-stack experimentation; total funding reached $51.5M.

Timeline:

- 2014: Ivar Conradi Østhus builds a feature management tool in his spare time to solve a release problem at the Norwegian classifieds site FINN.no.
- 2015: Unleash is released as an open source project on GitHub and is maintained as a community effort for the next several years.
- 2019: Brothers Ivar Conradi Østhus and Egil Østhus found the commercial company in Oslo, trading as Bricks Software AS, with Egil as chief executive and Ivar as chief technology and product officer.
- 2022: Raises a $14M Series A in March to build out the hosted platform and enterprise governance features.
- 2024: Unleash Edge and flag lifecycle management mature, addressing the two operational complaints about flag platforms at scale: connection load and accumulated flag debt.
- 2026: Raises a $35M Series B led by One Peak in March, reporting more than 500 paying customers, three consecutive years of doubled annual recurring revenue, 140 percent net revenue retention, and over 35 million downloads, with investment earmarked for full-stack experimentation.

## Integrations

Datadog, Slack, Jira, Google Analytics, Segment, Webhooks, Terraform provider, OpenFeature, GitHub, Prometheus-style flag metrics

## FAQ

### What is Unleash?

Unleash is an open source feature management platform. It controls software releases through feature flags, gradual rollouts, targeting rules, kill switches, and weighted variants, with backend SDKs that cache the whole configuration in memory and evaluate locally. It runs as a $75 per seat cloud service, a quoted enterprise plan with cloud, self-hosted, or hybrid deployment, or a free self-hosted open source build.

### How much does Unleash cost?

The Pay-As-You-Go cloud plan is $75 per seat per month with 53 million API requests included and $5 per additional million, bought by credit card after a 14 day trial with no card required. Custom Enterprise is quoted and covers cloud, self-hosted, or hybrid deployment with a five seat minimum for self-hosted. The open source self-hosted build has no licence fee. There is no free hosted tier.

### Does Unleash send my users' data to its servers?

No, and this is the product's central claim. Backend SDKs download the full flag configuration, cache it in memory, and apply activation strategies locally, so evaluation happens inside your own application and no end user data reaches the Unleash server. Frontend SDKs receive only the flags already resolved as enabled for a given context, so client bundles never contain your targeting rules either. For GDPR reviews this is a materially better starting position than vendors requiring an identity lookup per user.

### What would Unleash cost at 10,000 versus 100,000 monthly users?

The same, in almost every realistic case. The meter is seats plus API requests, and because backend SDKs poll for configuration on an interval rather than calling per user, request volume scales with the number of running services and their refresh rate rather than with your user count. A five-person team pays $375 a month at either scale, and the 53 million included requests is a very high ceiling for a small business.

### Does Unleash run A/B tests?

It serves them but does not analyse them. Variants split traffic with weights and payloads, and impression data emits an event for every evaluation carrying the flag, variant, and context, which you route into your analytics tool. There is no significance calculation, no sequential testing, and no variance reduction inside Unleash. The March 2026 Series B names full-stack experimentation as an investment area, so this may change, but do not buy on the roadmap.

### Will feature flags slow my application down?

Not with backend SDKs. They hold the entire configuration in memory and evaluate strategies in process at nanosecond speed, with no network call at decision time. Frontend traffic is absorbed by Unleash Edge, a caching layer that handles thousands of connections and keeps serving cached configuration if the upstream server is unavailable, so an Unleash outage degrades to last known state rather than breaking your app.

### Is self-hosting Unleash free?

The open source build has no licence fee and no request metering, but you operate the API server, a Postgres database, and usually Unleash Edge in front of it, plus upgrades, backups, and monitoring. Enterprise governance features require a commercial licence, and the supported enterprise self-hosted plan carries a five seat minimum. Self-hosting is the right answer when residency or policy demands it, not usually when cost does.

### How does Unleash compare with Flagsmith on price?

For a three-person team, Flagsmith is $40 a month and Unleash is $225, which looks decisive. The comparison narrows if you need governance: SSO, role based access control, change request approvals, and audit logs are included in Unleash's base plan but start at Flagsmith's $250 a month Scale-Up tier. Unregulated small teams should take Flagsmith; teams that need approvals and audit trails should price both properly rather than reading the headline.

### Who owns Unleash and how stable is the vendor?

Unleash is a privately held Oslo company trading as Bricks Software AS, co-founded in 2019 by brothers Ivar Conradi Østhus and Egil Østhus, built on an open source project Ivar started at FINN.no in 2014. It has raised $51.5M including a $35M Series B in March 2026 led by One Peak, reports more than 500 paying customers and three consecutive years of doubled revenue, and counts Lloyds Banking Group, Prudential, Wayfair, and Lenovo as customers. The public codebase is the fallback if any of that changes.

### Can I stop flags from piling up forever?

Unleash is better at this than most. Flag metrics show which flags are actually being evaluated, retained for 90 days, and the platform tracks where each flag sits in its lifecycle so ones that have served their purpose are surfaced for removal. This does not delete anything for you, but it turns feature flag technical debt from an invisible problem into a list somebody can work through.

## Editorial verdict

Unleash is the feature flag platform for teams that treat releases as a governed process rather than a convenience. The evaluation architecture is the best in the category, with backend SDKs applying strategies locally so no user data reaches the vendor and no network call touches your request path, and the governance layer that competitors sell as enterprise, meaning SSO, role based access control, four-eyes approvals, two year audit logs, and EU residency, is simply in the base plan. That is worth the $75 seat price if you need it. Buy Unleash if you are European and privacy-constrained, if change control is a requirement, or if flags are production infrastructure for a fleet of services. Do not buy it as a cheap first flag tool, because Flagsmith does that job for a fraction of the money, and do not buy it expecting experiment results, because variants and impression data are where it stops and a real statistics engine is a different purchase.

---

Source: SaaSTracker (https://saastracker.org), an independent editorial project. This profile is compiled from public information, carries no peer reviews or paid placement, and was last reviewed 2026-08-22. Awards are judged on published criteria: https://saastracker.org/methodology
