Social
POST (create) a social media post
Creates a new social media post that can be published immediately or scheduled for later publication. A post can target one or more social profiles, and can include text, images, and network-specific settings.
Set status to DRAFT to save without publishing, or SCHEDULED to schedule for publication. Scheduled posts require a scheduled_time in ISO-8601 format.
Post content and settings can vary per profile — each profile_posts entry can have its own text, images, and network-specific settings (e.g., TikTok-specific settings like disable_comment).
post/social/posts
Request body
Example request
{
"name": "My Social Post",
"profile_posts": [
{
"images": [
{
"url": "https://www.host.com/path+with%20space?q=query%20with+space"
}
],
"profiles": [
{
"network": "facebook"
}
]
}
],
"scheduled_time": "2026-03-15T14:30:00.000Z",
"status": "SCHEDULED"
}Response
OK
Example response
{
"name": "My Social Post",
"profile_posts": [
{
"images": [
{
"url": "https://www.host.com/path+with%20space?q=query%20with+space"
}
],
"profiles": [
{
"network": "facebook"
}
]
}
],
"scheduled_time": "2026-03-15T14:30:00.000Z",
"status": "SCHEDULED"
}