One CMS to power all your blogs
Create content once, serve it anywhere via API. No more rebuilding blog systems for each project. Integrates with AI content tools.
Multi-tenant
Create multiple sites, each with its own content, settings, and API keys.
API-first
RESTful API for reading and writing content. Use with any frontend framework.
Secure
API key authentication with granular permissions. Public or private access.
Simple API, Powerful Features
GET /api/v1/sites/my-blog/posts
{
"posts": [
{
"title": "Hello World",
"slug": "hello-world",
"content": "<p>Welcome to my blog!</p>",
"category": { "name": "Tutorials" },
"tags": [{ "name": "intro" }],
"reading_time": 2,
"published_at": "2024-12-15T..."
}
],
"pagination": { "page": 1, "total": 42 }
}