Schedule Posts
Schedule posts for specific times
Schedule posts for specific times in the future.
Schedule for a Specific Time
curl https://api.missinglettr-api.com/v1/workspaces/1/posts/ \
-X POST \
-H "Authorization: Api-Key YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "Scheduled post!",
"platforms": ["twitter"],
"schedule_type": "manual",
"scheduled_times": {
"twitter": "2025-12-10T14:00:00Z"
}
}'