Post
Publishing a Post
Endpoint
Base URL: https://backend.blotato.com/v2
URL: /posts
Method: POST
Rate Limit: 30 requests / minute
Description
Publish a new post to a social media platform. The request must include the post content, target platform, and an accountId (fetched from GET /v2/users/me/accounts).
After submitting, poll Get Post Status with the returned postSubmissionId to track publishing progress.
Before You Start
Fetch your connected accounts:
GET /v2/users/me/accounts(docs)For Facebook/LinkedIn, fetch subaccounts to get
pageId:GET /v2/users/me/accounts/{accountId}/subaccounts(docs)Set
content.platformandtarget.targetTypeto the same platform value (e.g., both"twitter")
Request Body
The request body has two top-level fields: post (required) and optional scheduling fields. Do not nest scheduling fields inside post.
post
object
Yes
The post content and metadata.
scheduledTime
string
No
ISO 8601 timestamp with timezone offset (e.g., 2026-03-04T16:30:00+00:00). If provided, useNextFreeSlot is ignored.
useNextFreeSlot
boolean
No
Schedule at the next available slot time. Defaults to false. Requires at least one calendar slot configured for the target platform.
Scheduling behavior:
If
scheduledTimeis set: the post is scheduled for that time.useNextFreeSlotis ignored.If
useNextFreeSlotistrue(and noscheduledTime): the post is scheduled at the next available calendar slot for that platform.If neither
scheduledTimenoruseNextFreeSlotis provided: the post publishes immediately.Both fields must be root-level (siblings of
post). If they are nested insidepost,options, or any other object, they are ignored and the post publishes immediately.
post Object
post ObjectaccountId
string
Yes
The account ID from GET /v2/users/me/accounts.
content
object
Yes
The content of the post. See content below.
target
object
Yes
The target platform and platform-specific fields. See target below.
content Object
content Objecttext
string
Yes
The text content of the post.
mediaUrls
array of strings
Yes
Array of media URLs. Pass any publicly accessible URL -- no upload step required. Pass [] for text-only posts.
platform
string
Yes
Must match target.targetType. Values: twitter, linkedin, facebook, instagram, pinterest, tiktok, threads, bluesky, youtube, other
additionalPosts
array
No
Additional posts for threads (Twitter, Bluesky, Threads). Each has text and mediaUrls.
target Object
target ObjectThe target object requires targetType and platform-specific fields. Set targetType to match content.platform.
Quick Reference: Required Fields Per Platform
Platform
targetType
Required Fields
Optional Fields
"twitter"
(none)
(none)
"linkedin"
(none)
pageId
"facebook"
pageId
mediaType, link
"instagram"
(none)
mediaType, altText, collaborators, coverImageUrl, shareToFeed, audioName
TikTok
"tiktok"
privacyLevel, disabledComments, disabledDuet, disabledStitch, isBrandedContent, isYourBrand, isAiGenerated
title, autoAddMusic, isDraft, imageCoverIndex, videoCoverTimestamp
"pinterest"
boardId
title, altText, link
Threads
"threads"
(none)
replyControl
Bluesky
"bluesky"
(none)
(none)
YouTube
"youtube"
title, privacyStatus, shouldNotifySubscribers
isMadeForKids, containsSyntheticMedia
Webhook
"webhook"
url
(none)
Twitter
targetType
"twitter"
Yes
LinkedIn
targetType
"linkedin"
Yes
Facebook
targetType
"facebook"
Yes
mediaType
"video" or "reel"
No
How to upload videos. Only applies when mediaUrls contains a video.
link
string
No
URL to attach as a link preview.
Instagram
targetType
"instagram"
Yes
mediaType
"reel" or "story"
No
Default: "reel". Has no effect on image posts.
altText
string
No
Alt text for images. Up to 1000 characters.
collaborators
array of strings
No
Instagram handles to tag (max 3). Do not include the @ sign.
coverImageUrl
string
No
Cover image URL for reels. Max 8MB.
shareToFeed
boolean
No
Share the reel to the Instagram feed. Only applies to reels.
audioName
string
No
Custom audio name for reels. You can only set this once per reel.
TikTok
targetType
"tiktok"
Yes
privacyLevel
string
Yes
SELF_ONLY, PUBLIC_TO_EVERYONE, MUTUAL_FOLLOW_FRIENDS, or FOLLOWER_OF_CREATOR
disabledComments
boolean
Yes
disabledDuet
boolean
Yes
disabledStitch
boolean
Yes
isBrandedContent
boolean
Yes
isYourBrand
boolean
Yes
isAiGenerated
boolean
Yes
title
string
No
Title for image posts. Max 90 characters. No effect on videos.
autoAddMusic
boolean
No
Add music to photo posts. No effect on videos. Default: false.
isDraft
boolean
No
Post as a draft. Drafts appear in TikTok mobile app notifications, not the Drafts folder.
imageCoverIndex
number
No
Index (starting from 0) of image to use as cover for carousels.
videoCoverTimestamp
number
No
Timestamp in milliseconds to use as video cover.
Pinterest
targetType
"pinterest"
Yes
title
string
No
Pin title.
altText
string
No
Pin alt text.
link
string
No
Pin URL link.
Pinterest "description" comes from the content.text field.
Threads
targetType
"threads"
Yes
replyControl
string
No
everyone, accounts_you_follow, or mentioned_only
Bluesky
targetType
"bluesky"
Yes
YouTube
targetType
"youtube"
Yes
title
string
Yes
Video title.
privacyStatus
string
Yes
private, public, or unlisted
shouldNotifySubscribers
boolean
Yes
isMadeForKids
boolean
No
Default: false
containsSyntheticMedia
boolean
No
Whether media contains AI-generated content.
Webhook
targetType
"webhook"
Yes
url
string
Yes
The webhook URL to send the post data.
Response
Status Code: 201 Created
Use postSubmissionId to poll Get Post Status for publishing progress.
Failed posts are visible at https://my.blotato.com/failed. The most common cause of failed posts is incorrect JSON structure.
Examples
1. Simplest Post (Twitter, text only)
2. Instagram Post with Images
Posting multiple images to Instagram creates a carousel.
3. Facebook Page Post
Get accountId and pageId from the Accounts endpoints.
4. TikTok Post (all required fields)
5. Scheduled Post
6. Twitter Thread
Threads work for Twitter, Bluesky, and Threads.
7. Schedule at Next Free Slot
useNextFreeSlot and scheduledTime are top-level fields, not inside post.
Last updated