Your content API.
Any frontend. Any device.
Fluxeta is a full headless CMS with REST API access, API key authentication, webhooks, and multi-site management. Use it hybrid or go fully API-driven — your call.
"data": [
{
"id": 42,
"title": "Creator Economy in 2026",
"slug": "creator-economy-2026",
"status": "published",
"published_at": "2026-05-01T09:00:00Z"
}
],
"meta": { "total": 48, "page": 1 }
}
Works with your stack
Two modes. One platform.
Use Fluxeta however your project demands. Switch at any time.
Hybrid CMS
Best for creators who want a built-in site and an API
- Built-in public site at
yourdomain.com - Full REST API access alongside your site
- Newsletter, memberships, courses all work out of the box
- Deliver content to your Next.js app and your newsletter
- No extra configuration needed
Fully Headless
Best for developers who want a backend-only CMS
- Disable the built-in public site entirely
- Serve all content via REST API to your own frontend
- Works with Next.js, Nuxt, React Native, Flutter
- Per-site API key scoping for security
- Webhooks fire on every publish, update, or delete
Everything the API covers
A clean, well-documented REST API built for developers.
GET /posts
GET /posts/{id}
GET /posts/{slug}
List, filter, and fetch published posts. Supports pagination, search, category, and tag filters.
GET /subscribers
POST /subscribers
DELETE /subscribers/{id}
Read and manage your subscriber list programmatically. Add subscribers from your own forms.
GET /members
GET /members/{id}
Read paid membership data. Check access tier for content gating in your own frontend.
GET /sites
GET /sites/{id}
Fetch site metadata — name, description, slug, logo, settings. Useful for white-label builds.
GET /media
POST /media
Upload media and fetch existing assets. CDN URLs returned for all uploaded files.
POST /webhooks
DELETE /webhooks/{id}
Register your own endpoints. Events: post.published, post.updated, subscriber.added, member.created.
Manage 50 content sites from one account.
Every site gets its own API key, its own subscriber list, its own content. Perfect for agencies, media companies, or creators running multiple brands.
- Unlimited sites on Business plan
- Per-site API key with read-only or full-access scope
- Switch between sites instantly from the dashboard
- White-label the entire dashboard for your clients
- Team members with role-based access per site
sk_live_••••sk_live_••••sk_live_••••sk_live_••••Built for developer workflows
Everything your team needs to integrate Fluxeta into any pipeline.
Custom Content Types
Define your own content schemas — add custom fields to posts. Text, number, boolean, date, and rich text fields supported. All exposed via API.
Webhooks on Every Event
Register HTTPS endpoints and receive real-time payloads when content is published, updated, or deleted. Perfect for triggering ISR or CDN purges.
Media CDN
Upload images via API. Get back CDN URLs immediately. No separate storage configuration. Works out of the box.
API Key Management
Generate multiple API keys per site. Rotate keys without downtime. Read-only keys for public frontends, full-access keys for internal tooling.
Preview Mode
Generate preview tokens for draft posts. Pass the token to your Next.js preview API route and render unpublished content securely.
Regional Language Content
AI-powered translation to Hindi, Tamil, Telugu, Marathi, and Bengali. Full content available via API for language-specific frontends.
Fetch your content in seconds
Clean, predictable responses. No GraphQL complexity required.
# Fetch published posts
curl https://fluxeta.com/api/v1/posts \
-H "Authorization: Bearer sk_live_your_key"
# Fetch a single post by slug
curl https://fluxeta.com/api/v1/posts/my-post-slug \
-H "Authorization: Bearer sk_live_your_key"
# Fetch subscribers (paginated)
curl "https://fluxeta.com/api/v1/subscribers?page=1&per_page=50" \
-H "Authorization: Bearer sk_live_your_key"
Ready to build on Fluxeta?
API access is included on all plans. Start free, upgrade when you scale.