Feature Flags

Ship features with confidence

Control feature rollouts with simple toggles or gradual percentage-based releases. Perfect for A/B testing, canary deployments, and safe feature launches.

5 free flags
No SDK required
Instant updates
Feature Flags
3 active flags
Dark Mode
dark_mode_enabled
Toggle
New Checkout Flow
new_checkout_v2
25% Rollout
AI Recommendations
ai_recs_beta
10% Rollout
API Response
{
  "key": "new_checkout_v2",
  "enabled": true,
  "flagType": "percentage",
  "percentage": 25
}
Flag Enabled
user_abc123
Rollout: 25%
2,500 users

Everything you need for feature management

Simple, powerful feature flags that work with any stack. No complex setup required.

Toggle Flags

Simple on/off switches for features. Enable or disable features instantly across your entire user base.

Percentage Rollouts

Gradually release features to a percentage of users. Perfect for canary deployments and A/B testing.

Consistent Hashing

Same user always gets the same result. Use any identifier for deterministic flag evaluation.

Instant Updates

Changes take effect immediately. No deployments, no cache invalidation, no waiting.

Simple API

RESTful API that works with any language. Single endpoint for flag evaluation, no SDK required.

Safe Rollbacks

Something wrong? Disable a flag instantly to roll back without deploying code.

How it works

Get started in minutes with our simple API

1

Create a flag

Create a feature flag in your dashboard. Choose between a simple toggle or percentage-based rollout.

2

Check the flag

Call our API from your app to check if a feature is enabled for a specific user.

3

Roll out safely

Toggle features on/off instantly or gradually increase the rollout percentage.

feature-check.js
const response = await fetch(
  `https://loggy.dev/api/feature-flags/evaluate/${userId}/new_checkout`
);

const { enabled } = await response.json();

if (enabled) {
  renderNewCheckout();
} else {
  renderOldCheckout();
}

Start free, scale as you grow

Feature flags are included in all Loggy plans

Free
$0/month
  • 5 feature flags
  • Toggle on/off
Popular
Pro
$5/month
  • 10 feature flags
  • Percentage rollouts
Team
$20/month
  • Unlimited flags
  • Percentage rollouts
Get Started Free