Ship content like you ship code.

The developer-first headless CMS. Create articles, fetch them via API, done.

No credit card required.

Built for
50msglobal p95 latency
TypeScript SDKClient example
import { SimplistClient } from "@simplist.blog/sdk"

const client = new SimplistClient({
  apiKey: process.env.SIMPLIST_API_KEY,
})

const articles = await client.articles.list({
  limit: 10,
  tags: ["changelog"],
})
Multi-tenant projectsBuilt-in
Analytics & SEO APIIncluded

Why Developers Pick Simplist

Everything you need to run a content platform

Content API, analytics, SEO and multi-tenant projects – all in one place, without a custom backend to maintain.

Global performance by default
Your content loads instantly anywhere in the world.
  • Sub-50ms response times worldwide
  • Built-in caching for zero latency
  • CDN-ready for global performance
Security first
Enterprise-grade security baked into every request.
  • Secure API keys with granular permissions
  • Rate limiting to prevent abuse
  • CORS protection for your domains
SEO & feeds included
Ship sitemaps, RSS and social cards without extra services.
  • Auto-generated XML sitemaps
  • Rich meta tags for social sharing
  • RSS feeds for content syndication
Developer experience first
Modern SDKs, great docs and an API that feels familiar.
  • TypeScript SDK with auto-completion
  • Interactive API documentation
  • Works with React, Vue, Next.js & more
Analytics that actually help
Understand your readers and what they care about.
  • Track views, time on page & engagement
  • Geographic data of your readers
  • Filter bot traffic automatically
Scales with your projects
From side project to production-grade content platform.
  • From side project to production
  • Handle millions of requests effortlessly
  • No infrastructure to manage
Simple, transparent pricing

Start free, scale when you're ready

Build your blog with our free plan, upgrade to Pro when you need advanced features.

Starter
Perfect for exploring the platform.
$0/month
5 Articles
1K/month API calls
Basic (7 days) Analytics
1 per article Variants
Media Library
Webhooks
Most Popular
Pro
Ideal for creators looking for advanced features.
$9.99/month
Unlimited Articles
Unlimited API calls
Advanced Analytics
Scheduled Publishing
Unlimited Variants
Up to 10 Team members
Secured by Stripe
SSL encrypted
Cancel anytime

Frequently asked questions

Everything you need to know about our pricing

Still have questions? We're here to help.

Contact us

Built for Developers

From idea to published article in a few lines of code

Create a client, post your content, fetch it on your blog. That's it.

1 ・ Initialize the client

import { SimplistClient } from "@simplist.blog/sdk"

const client = new SimplistClient({
  apiKey: process.env.SIMPLIST_API_KEY
})

2 ・ Fetch your published articles

const articles = await client.articles.list({
  limit: 10,
  sortBy: "publishedAt",
  order: "desc",
})

3 ・ Render on your blog

export async function BlogPage() {
  const { data } = await client.articles.list({ limit: 5 })

  return (
    <ul>
      {data.map((article) => (
        <li key={article.id}>{article.title}</li>
      ))}
    </ul>
  )
}

Sample JSON response

{
  "data": [
    {
      "id": "art_01hx...",
      "title": "Introducing our new analytics API",
      "slug": "introducing-analytics-api",
      "excerpt": "Track views, sessions and engagement...",
      "publishedAt": "2024-05-10T09:30:00Z",
      "tags": ["changelog", "product"]
    }
  ]
}