Scheduling Overview

Advanced post scheduling features

The Missinglettr API provides a comprehensive scheduling system with time slots, queues, recurring posts, and AI-powered optimal time prediction.

Key Features

  • Time Slots - Define specific times for auto-scheduling
  • Post Queue - Add posts to a queue for automatic scheduling
  • Blocked Periods - Prevent posting during holidays/events
  • Recurring Posts - Templates for repeating content
  • Optimal Times - AI-powered best time recommendations

Schedule Types

When creating a post, choose from these scheduling options:

TypeDescription
manualYou specify the exact schedule_time
next_availableSystem picks the next open slot
optimizedAI selects the best time based on engagement
// Create post with optimized scheduling
curl -X POST "/v1/workspaces/1/posts/" \
  -H "Authorization: Api-Key YOUR_KEY" \
  -d '{
    "text": "Hello world!",
    "platforms": ["twitter", "linkedin"],
    "schedule_type": "optimized"
  }'