blogAIzer API Documentation
blogAIzer is an AI content pipeline as a service. Send a topic, get a complete research-backed, EEAT-compliant blog post with HTML, featured image, social posts, and SEO metadata.
Base URL
text
https://blogaizer.com/api/v1
How It Works
- Register — Create an account and get API keys
- Configure — Set up your brand, products, personas, and publish targets
- Generate — Submit topics and receive complete articles asynchronously
- Distribute — Auto-publish to WordPress, receive via webhook, or poll for results
API Groups
| Group | Purpose | Endpoints |
|---|---|---|
| Account | Registration, billing, usage | /v1/account/* |
| Configuration | Brand, products, personas, targets | /v1/config/* |
| Content | Article generation (async) | /v1/content/* |
| Intelligence | Ideas, analytics, follow-ups | /v1/intelligence/* |
Quick Example
bash
# 1. Register and get your API key
curl -X POST https://blogaizer.com/api/v1/account/register \
-H "Content-Type: application/json" \
-d '{"email": "you@company.com", "company_name": "Your Company"}'
# 2. Configure your brand
curl -X POST https://blogaizer.com/api/v1/config/brand \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{"name": "Your Brand", "industry": "Technology", "brand_voice": "Professional, data-driven"}'
# 3. Generate an article
curl -X POST https://blogaizer.com/api/v1/content/articles \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{"topic": "AI trends in 2026", "outputs": ["html", "social"]}'
# 4. Poll for result
curl https://blogaizer.com/api/v1/content/articles/job_abc123 \
-H "Authorization: Bearer sk_live_..."
Machine-Readable Specs
- OpenAPI 3.1 Spec — For dev tools, Swagger UI, code generators
- MCP Manifest — For AI agents (Claude, Cursor, Windsurf)
- ChatGPT Plugin — For OpenAI-compatible agents
- LLM Description — Plain text for LLM crawlers
