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:
| Type | Description |
|---|---|
manual | You specify the exact schedule_time |
next_available | System picks the next open slot |
optimized | AI 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"
}'