Create, collaborate, and publish.
Without the guesswork.
Flotiq gives content editors full control with structured editing, instant previews, and workflows that just make sense.


Not just another CMS.
Meet Flotiq.
A headless CMS should serve both developers and content editors. That’s why we designed Flotiq as an API-first platform that gives developers full control over the stack, while offering editors a clear, user-friendly environment to create, update, and publish content - without technical friction.
Whether you're launching a personal website, building a mobile app, or powering an enterprise system, Flotiq adapts to your needs.
Start with Demo Space
Register and jump straight into a real example. No setup, no stress, just explore how a content model works in action.
With Live Preview plugin, your changes show up on the frontend right away. Build faster, iterate better.
Play with plugins, explore content pipelines, edit content, publish it, and call the API to see real structured responses. Explore it all in our live demo space!
Bring your favorite tools.
Use your favorite language or framework – Flotiq provides structured data you can fetch anywhere.
// Import Your Personal API SDK
import { Flotiq } from "@flotiq/flotiq-api-sdk";
// Configure API
const api = new Flotiq(); // read api key automatically from process.env.FLOTIQ_API_KEY
// or
const api = new Flotiq({
apiKey: "<YOUR API KEY>",
});
// Request projects
const projects = await api.content.project.list({ limit: 10 });
console.log(`Projects count: ${projects.count}`);
projects.data.map((project) => {
console.log(`${project.id}: ${project.name}`);
});
<?php
// Import Your Personal API SDK
require_once('lib/flotiq-sdk/vendor/autoload.php');
// Configure API
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()
->setApiKey('X-AUTH-TOKEN', '__FLOTIQ_API_KEY__');
// Request projects
$projectsApi = new OpenAPI\Client\Api\ContentProjectApi(null, $config);
$projects = $projectsApi->listProject(1, 10);
echo "Projects count: {$projects->getTotalCount()}";
foreach ($projects->getData() as $project) {
echo $project->getId();
echo $project->getName();
}
---
// Import Your Personal API SDK
import { Flotiq } from "@flotiq/flotiq-api-sdk";
// Configure API
const api = new Flotiq({
apiKey: import.meta.env.VITE_FLOTIQ_API_KEY
});
// Request projects
const projects = await api.content.project.list({ limit: 1000 });
const data = projects.data;
const totalCount = projects.totalCount;
---
<h1>Projects {totalCount}</h1>
<div>
{data.map((project) => (
<div key={project.id}>
<h2>{project.name}</h2>
<p>{project.description}</p>
</div>
))}
</div>
// File: src/app/projects/[id].js or app/projects/[id].js
import { notFound } from "next/navigation";
// Import Your Personal API SDK
import { Flotiq } from "@flotiq/flotiq-api-sdk";
// Configure API
const api = new Flotiq(); // read api key automatically from process.env.FLOTIQ_API_KEY
// or
const api = new Flotiq({
apiKey: "<YOUR API KEY>",
});
export default async function Project({
params,
}: {
readonly params: Promise<{ readonly id: string }>;
}) {
const { id } = await params;
// Request project
const project = await api.content.project.get(id);
if (!project) {
return notFound();
}
return (
<article>
<h2>{project.name}</h2>
<p>{project.description}</p>
</article>
);
}
import { useEffect, useState } from "react";
// Import Your Personal API SDK
import { Flotiq } from "@flotiq/flotiq-api-sdk";
// Configure API
const api = new Flotiq({
apiKey: import.meta.env.VITE_FLOTIQ_API_KEY,
});
function App() {
const [projects, setProjects] = useState([]);
const [total, setTotal] = useState();
useEffect(() => {
// Request projects
api.content.project.list({ limit: 10 }).then((projects) => {
setProjects(projects.data);
setTotal(projects.total_count);
});
}, []);
return (
<>
<h1>Projects {total}</h1>
{projects.map((project) => (
<div key={project.id}>
<h2>{project.name}</h2>
<p>{project.description}</p>
</div>
))}
</>
);
}
export default App;
import { Component, OnInit } from '@angular/core';
import { ContentProjectService, Project } from "flotiq";
@Component({
selector: 'app-root',
templateUrl: './app.component.html'
})
export class AppComponent implements OnInit{
projects: Project[] | undefined;
total = 0;
// Inject your Personal API
constructor(private readonly projectsService: ContentProjectService) { }
ngOnInit() {
// Use available methods and response
this.projectsService.listProject().subscribe((res) => {
this.total = res.total_count
this.projects = res.data;
})
}
}
Everything you need to build fast
Build with Flotiq and simplify your workflow.
Real stories. Real results.
See how companies use Flotiq to build fast, scalable digital products – from e-commerce to enterprise platforms. Discover what’s possible with our headless CMS.
Powerful integrations
Whether you're building a blog, e-commerce platform, mobile app, or enterprise system – Flotiq adapts to your needs. Discover ready-to-use solutions for developers, marketers, and entire teams.
One platform.
Limitless solutions.
Flotiq is a headless CMS built to support a wide range of digital projects - from company websites, blogs, and e-commerce platforms to mobile applications, internal tools, documentation portals, and content-driven apps.
Whether you’re building a multilingual website, managing multimedia assets, or developing a knowledge base, Flotiq helps you structure, edit, and deliver content exactly where and how you need it.
Built with our Partners
Discover a partner network designed to bring your vision to life with tailored expertise and innovative solutions.
Join Flotiq Partner Program
Join the Flotiq Partner Program and unlock exclusive benefits, including comprehensive training, pre-sales support, co-marketing activities, new sales opportunities, and more.