Realtime
edge config +
feature flagsfor
Web, Mobile& IOT
No credit card required
Integrates With:
Discover Our Unique Features
Explore our distinctive features for a seamless experience.
Instant Updates
Modify app configs in real-time, no redeployment needed, ensuring dynamic responsiveness for swift adjustments
Version Control
Efficiently manage and roll back configs, offering seamless version control for testing and troubleshooting
Segment Flexibility
Customize configurations for diverse app segments, providing tailored settings for specific user groups or scenarios
User Interface
Intuitive interface for easy config creation and adjustment, ensuring a user-friendly experience for all
Platform Harmony
Seamlessly handle configurations across web, mobile, and IoT platforms, streamlining management for diverse applications
Audit Security
Track changes with an audit trail, ensuring accountability and enhancing security for protected application settings
Features
Blazing fast
Edge API
Unmatched low-latency edge APIs delivering cutting-edge responses, propelling your web, mobile, and IoT experiences into the future
- Built on top of edge runtime/networks
- Ultra low-latency responses
- High availability & no cold starts
- Realtime config synchronization with server & clients
- Public & protected endpoints
/**
* v0 by Vercel.
* @see https://v0.dev/t/q78qlbK
*/
import {
AccordionTrigger,
AccordionContent,
AccordionItem,
Accordion,
} from '@/components/ui/accordion'
import { Section } from '@/components/section'
import type { FAQ as FAQType } from 'contentlayer/generated'
import { FAQPageJsonLd } from 'next-seo'
export interface IFaqProps extends FAQType {}
export const FAQ: React.FC<IFaqProps> = ({
title,
description,
items = [],
}) => {
return (
<>
<Section title={title} description={description}>
<div className="mx-auto max-w-3xl text-left">
<Accordion className="mt-4 w-full" type="multiple">
{items?.map(({ question, answer }, index) => (
<AccordionItem key={index} value={index.toString()}>
<AccordionTrigger className="hover:underline-none">
{question}
</AccordionTrigger>
<AccordionContent>{answer}</AccordionContent>
</AccordionItem>
))}
</Accordion>
</div>
</Section>
<FAQPageJsonLd
useAppDir
mainEntity={items.map(
({ question: questionName, answer: acceptedAnswerText }) => ({
questionName,
acceptedAnswerText,
}),
)}
/>
</>
)
}
Web Standards
This is the description for the explainer section. It provides more details about the features.
// HTTP
fetch('<BASE_URL>/<id>/<segment>')
// Secure HTTP
fetch('<BASE_URL>/<id>/<segment>?apiKey=<secret>')
// Web socket
new WebSocket('<BASE_URL>/<id>/<segment>')
// Secure Web socket
new WebSocket('<BASE_URL>/<id>/<segment>?apiKey=<secret>')
// Example sharing same config schema for different segment of users
fetch(`<BASE_URL>/config-123/free_user`)
fetch(`<BASE_URL>/config-123/pro_user`)
new WebSocket(`<BASE_URL>/config-123/default_user`)
new WebSocket(`<BASE_URL>/config-123/beta_user`)
Made for Developers
Dive into an ecosystem crafted for developer excellence, where robust APIs and intuitive interfaces empower you.
- Built on top of web standards
- Simplified config version control and instant rollbacks
- Schema validation to ensure data integrity across multiple segments
- Custom tailored SDKs and integrations for popular frameworks & platforms
Pricing
Simplified pricing for growing & large scale apps or get started for free.
Free
Get started for free
$0
- Unlimited configurations
- 3 segments per config
- Unlimited backup/versions
- 2 team members
- Max store size: 8KB
- 50,000 reads per month (Realtime + HTTP)
- 100 writes per month
Pay as you go
Recommended for production
$14.99/mo
- Unlimited configurations
- Unlimited segments per config
- Unlimited backup/versions
- 10 team members included ($4 per user for additional membership)
- Max store size: 512KB
- 1,000,000 reads per month (Realtime + HTTP) ($2 per additional 1,000,000 reads)
- 1000 writes per month ($0.50 per additional 1000 writes)
FAQ
Frequently Asked Questions
Subscribe to our Newsletter
Stay updated with the latest news, articles, and resources, sent to your inbox weekly.
By subscribing you agree to our Terms & Conditions.