Now in Beta — Free for Early Adopters

Ship features with confidence

ToggleDroid is the feature flag platform built for developers who ship. Deploy faster, reduce risk, and release on your terms.

<50ms Avg Latency
99.9% Uptime
OFREP Compatible

E-commerce App

3 environments

Live

new-checkout-flow

Revamped checkout experience

dark-mode

System-wide dark theme

recommendation-engine

AI-powered suggestions

12

Flags

99.9%

Uptime

<50ms

Latency

Everything you need to control releases

Blazing Fast

Sub-50ms flag evaluation powered by Rust and SQLite. No cold starts, no bloat.

OpenFeature Compatible

Full OFREP protocol support. Use official OpenFeature SDKs or simple HTTP calls.

Team Management

Organizations, projects, and role-based access. Invite your team and control who sees what.

Up and running in 3 steps

1

Create your project

Set up your organization, create a project, and define your environments (dev, staging, production).

my-saas-app
2

Add feature flags

Create boolean flags with descriptive keys. Toggle them per environment using the dashboard or API.

new_checkout_flow
3

Evaluate in your app

Use the OFREP API with a single HTTP call. Works with any language, any framework.

GET /ofrep/v1/evaluate/flags
X-API-Key: to_prod_***

Simple, clean API integration

api-example.js
// Fetch all feature flags for your environment
const response = await fetch('https://toggledroid.io/ofrep/v1/evaluate/flags', {
  headers: {
    'X-API-Key': 'to_prod_your_api_key'
  }
});

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

// Check if a feature is enabled
const isNewCheckout = flags.find(
  f => f.key === 'new-checkout-flow'
)?.value ?? false;

if (isNewCheckout) {
  renderNewCheckout();
} else {
  renderLegacyCheckout();
}

Response

{
  "flags": [
    { "key": "new-checkout-flow", "value": true },
    { "key": "dark-mode", "value": false },
    { "key": "recommendation-engine", "value": true }
  ],
  "updated_at": "2026-02-13T10:30:00Z"
}

Single API Call

Fetch all flags in one request. No N+1 queries, no complex SDK setup.

ETag Caching

Server-side ETag support. Send If-None-Match to receive 304 when flags haven't changed.

API Key Auth

Simple header-based authentication. One key per environment, Argon2-hashed at rest.

Language Agnostic

REST API works with JavaScript, Python, Go, Ruby, PHP, Java, and more.

Ready to ship with confidence?

Start using ToggleDroid for free. No credit card required.