Headless CMS
Your content, any frontend
Full REST API. Use Fluxeta as a headless CMS or hybrid — keep the built-in site or go fully API-driven.
Fluxeta CMS
REST API
Next.js
React App
Mobile
Newsletter
Hybrid or fully headless
Choose how you want to use it. Both modes are supported simultaneously.
Hybrid CMS
Use the built-in site + API together
- Built-in public site at yourdomain.com
- API access for additional frontends
- Newsletter, memberships, analytics all work
- No extra configuration needed
Fully Headless
API only, your own frontend
- Disable the built-in public site
- Serve content via REST API to any frontend
- Works with Next.js, Nuxt, React Native
- API keys with per-site scoping
Simple, clean API
REST endpoints for posts, sites, subscribers, and members.
curl
curl https://fluxeta.com/api/v1/posts \
-H "Authorization: Bearer sk_live_your_api_key"
# Response
{
"data": [
{
"id": 42,
"title": "10 tips for newsletter growth",
"slug": "newsletter-growth-tips",
"status": "published",
"published_at": "2026-04-20T10:00:00Z",
"excerpt": "..."
}
],
"meta": { "total": 48, "page": 1 }
}