Skip to main content
Starter+ unlocks drafts and scheduling. Pro also unlocks bulk scheduling.

Ways to schedule

MethodAPI
scheduled_time on a postPOST /unified/post/text|image|video|carousel
Schedule-onlyPOST /unified/scheduled-posts
MCPpublish with schedule args / get_queued_posts
Use ISO 8601 UTC (2026-07-10T14:30:00Z). Celery workers publish when due.

Drafts

MethodAPI
draft: true on post bodySaves without publishing
draft_platformsDraft some networks, publish others
Dedicated drafts APIGET/POST/PATCH/DELETE /unified/drafts

Queue management

# List scheduled
curl "https://backend.postsiva.com/unified/scheduled-posts?status=scheduled" \
  -H "X-API-Key: psk_live_YOUR_KEY"

# List drafts
curl "https://backend.postsiva.com/unified/drafts" \
  -H "X-API-Key: psk_live_YOUR_KEY"
Scheduled items support update, delete, publish now, and move to draft.

Guides