Create Post
How to create new posts
Create a new post to publish or schedule to social media.
Create a Post
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": "Check out our latest blog post! 🚀",
"platforms": ["twitter", "linkedin"],
"publish_now": true
}'Parameters
| Parameter | Type | Description |
|---|---|---|
text | string | Post content |
platforms | array | Target platforms |
publish_now | boolean | Publish immediately |
media_urls | array | URLs of images/videos |