new-checkout-flow
Revamped checkout experience
dark-mode
System-wide dark theme
recommendation-engine
AI-powered suggestions
12
Flags
99.9%
Uptime
<50ms
Latency
Sub-50ms flag evaluation powered by Rust and SQLite. No cold starts, no bloat.
Full OFREP protocol support. Use official OpenFeature SDKs or simple HTTP calls.
Organizations, projects, and role-based access. Invite your team and control who sees what.
Set up your organization, create a project, and define your environments (dev, staging, production).
Create boolean flags with descriptive keys. Toggle them per environment using the dashboard or API.
new_checkout_flow
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_***
// 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"
}
Fetch all flags in one request. No N+1 queries, no complex SDK setup.
Server-side ETag support. Send If-None-Match to receive 304 when flags haven't changed.
Simple header-based authentication. One key per environment, Argon2-hashed at rest.
REST API works with JavaScript, Python, Go, Ruby, PHP, Java, and more.
Start using ToggleDroid for free. No credit card required.