Everything you need to integrate AutoOG into your workflow. From quick start guides to advanced API reference.
curl -X POST https://autoog.com/api/generate \ -H "Content-Type: application/json" \ -d '{"title":"My Blog Post","template":"minimal"}'{
"success": true,
"image_url": "https://og-image.vercel.app/...",
"width": 1200,
"height": 630,
"expires_at": "2026-04-24T19:45:00.000Z"
}<meta property="og:image" content="https://og-image.vercel.app/..." />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />Free tier allows 50 generations per month without any authentication. Perfect for testing and small projects.
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"}'