Blogree Docs

Welcome to Blogree Documentation

Everything you need to connect your website, automate blog publishing, and build on top of the Blogree API. Choose a topic below or use the sidebar to navigate.

Content Schema

Every post delivered by Blogree follows this consistent structure:

{ "id": "uuid", "version": 3, "slug": "my-post-slug", "title": "Post Title", "excerpt": "Short description | null", "body": { "html": "<h1>...</h1><p>...</p>", "markdown": "# Heading Paragraph...", "json": { "type": "doc", "content": [...] } }, "meta": { "title": "SEO title string", "description": "Meta description (max 160 chars)", "og_image": "https://cdn.blogree.com/og/..." }, "tags": ["keyword1", "keyword2"], "published_at": "2026-04-01T09:00:00Z", "status": "published" }