Developers
Let an agent draft your content
An AI agent - OpenClaw, Claude Code, or one you build yourself - can draft on-brand, scored posts straight into your Stratvo account. You still approve every post before it publishes. Nothing an agent does can post to your live social accounts.
Get a key
Go to Settings → Developer and create a key with the content:generate scope. The secret is shown once - copy it and set it as STRATVO_API_KEY in your agent's environment.
Endpoints
Authenticate every request with Authorization: Bearer sk_....
POST /api/v1/external/content:generateBody: { brief, platform }. Drafts a new post from a short brief for the given platform.
POST /api/v1/external/content/{id}:refineBody: { instruction }. Revises an existing draft based on your instruction.
Every draft an agent creates lands in your review deck with status pending_review. Nothing publishes until you swipe yes.
Example
curl https://api.stratvo.com/api/v1/external/content:generate \
-H "Authorization: Bearer sk_..." \
-H "Content-Type: application/json" \
-d '{
"brief": "Announce our summer sale, 20% off everything",
"platform": "instagram"
}'A CLI skill (npx skills add ...) that wraps these endpoints is coming next, so agents like Claude Code can call them without any glue code.