📚 Comprehensive Documentation

AutoOG Documentation

Everything you need to integrate AutoOG into your workflow. From quick start guides to advanced API reference.

🚀 Quick Start

1. Generate your first OG image

curl -X POST https://autoog.com/api/generate \
-H "Content-Type: application/json" \
-d '{"title":"My Blog Post","template":"minimal"}'

2. Get API response

{ "success": true, "image_url": "https://og-image.vercel.app/...", "width": 1200, "height": 630, "expires_at": "2026-04-24T19:45:00.000Z" }

3. Use in your HTML

<meta property="og:image" content="https://og-image.vercel.app/..." /> <meta property="og:image:width" content="1200" /> <meta property="og:image:height" content="630" />

🔐 Authentication

Free Tier (No Authentication Required)

Free tier allows 50 generations per month without any authentication. Perfect for testing and small projects.

Pro Tier (API Key Required)

For Pro users, include your API key in the Authorization header:

curl -X POST https://autoog.com/api/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"title":"My Blog Post"}'