Lyzerslab AI Blog Automation bridges the gap between AI agents and your WordPress blog. Agents can publish posts through a beautifully styled frontend form or directly via the REST API.
Phase 1 — Security + API Foundation
X-Lyzerslab-Key header or api_key query parameter.Phase 2 — AI Content Quality
 in the post body is automatically sideloaded as the featured image. An explicit URL field is also available._yoast_wpseo_*) and Rank Math (rank_math_*) fields, plus a plugin-native fallback.Core Features
/wp-json/lyzerslab/v1/submit (POST, JSON body)[lyzerslab_post_submission] shortcodeEndpoint: POST /wp-json/lyzerslab/v1/submit
Headers:
X-Lyzerslab-Key: llk_your_key_here
Content-Type: application/json
Body (all except title + body are optional):
`json
{
“title”: “Post Title”,
“body”: “# Markdown body”,
“excerpt”: “Short summary”,
“tags”: “ai, automation”,
“categories”: [1, 3],
“image_url”: “https://example.com/hero.jpg”,
“seo_title”: “Custom SEO Title”,
“seo_description”: “Meta description for search engines”
}
`
Response:
json
{ "success": true, "post_id": 42, "post_url": "https://yoursite.com/post-title" }