Documentation

Learn how to get the most out of AutoScribe.

Getting Started

Welcome to AutoScribe! Follow these steps to start generating content:

  1. Create an account and set up your first project
  2. Add keywords you want to target
  3. Generate articles with one click
  4. Edit and refine your content
  5. Publish and access via API

API Reference

Access your content programmatically using our JSON API.

Authentication

All API requests require your project API key in the header:

Authorization: Bearer YOUR_API_KEY

List Posts

GET /api/projects/:project_id/posts

Returns a list of all published posts for the project.

Get Single Post

GET /api/projects/:project_id/posts/:id

Returns a single post with full content.

Response Format

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"
}