v1.0 — Now available

Ship blogs, not infrastructure

The Wrytze API delivers AI-generated blog content to your app. Fetch, render, done.

app/blog/page.tsx
1// Fetch blogs in 3 lines
2import { WrytzeClient } from '@wrytze/sdk'
3
4const wrytze = new WrytzeClient({
5  apiKey: process.env.WRYTZE_API_KEY!
6})
7
8const { data, pagination } = await wrytze.blogs.list()|

Everything you need

From first API call to production-ready blog pages.

Structured data, ready to render

Every response includes typed JSON with pagination metadata, categories, tags, and pre-rendered HTML. No data transformation needed.

200 OKGET /api/v1/blogs
{
  "data": [
    {
      "title": "Getting Started with React 19",
      "slug": "getting-started-with-react-19",
      "contentHtml": "<h2>Introduction</h2>...",
      "categories": [{ "name": "Technology" }]
    }
  ],
  "pagination": { "total": 42, "pages": 9 }
}

Start building in minutes

Get your API key from the Wrytze dashboard and follow the quickstart to publish your first blog.