Learn how to get the most out of AutoScribe.
Welcome to AutoScribe! Follow these steps to start generating content:
Access your content programmatically using our JSON API.
All API requests require your project API key in the header:
Authorization: Bearer YOUR_API_KEY
GET /api/projects/:project_id/posts
Returns a list of all published posts for the project.
GET /api/projects/:project_id/posts/:id
Returns a single post with full content.
All responses are returned in JSON format:
{
"id": 1,
"title": "Your Post Title",
"slug": "your-post-title",
"meta_title": "Your Post Title | Blog",
"meta_description": "A brief description...",
"content": "# Your Post\n\nMarkdown content here...",
"word_count": 2450,
"published": true,
"published_at": "2026-01-15T10:00:00Z",
"created_at": "2026-01-14T08:30:00Z",
"updated_at": "2026-01-15T09:45:00Z"
}