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.
⚡
Quick Start
Get your first AI post published in under 10 minutes.
▲
Next.js Integration
App Router and Pages Router setup with the official adapter.
🔵
WordPress Integration
Connect any WordPress site in under 5 minutes.
📡
API Reference
Full REST API documentation with request/response examples.
⏰
Scheduling Guide
Master post scheduling, timezones, and calendar management.
📊
Analytics Guide
Understanding delivery analytics, charts, and failure debugging.
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"
}