REST APIHosted endpoints
Call BlogCreator from your own apps, CI jobs, or scripts — no MCP server required. All routes are hosted at https://blogcreator.dev.
/api/ai-contentGenerate platform-ready content
Request body
{ title: string; tone?: string; platform?: "website" | "linkedin" | "quora" | "medium" | "substack" }Example
curl -X POST https://blogcreator.dev/api/ai-content \
-H "Content-Type: application/json" \
-d '{"title":"B2B SaaS content strategy","platform":"website","tone":"practitioner"}'/api/analyzeRun deep SEO and readability analysis
Request body
{ content: string }Example
curl -X POST https://blogcreator.dev/api/analyze \
-H "Content-Type: application/json" \
-d '{"content":"Paste your draft here..."}'/api/outlineBuild structured content outlines
Request body
{ content: string }Example
curl -X POST https://blogcreator.dev/api/outline \
-H "Content-Type: application/json" \
-d '{"content":"Your article or brief..."}'Responses are JSON. Rate limits apply on shared infrastructure — contact us for higher throughput on Pro.