Skip to content

Platforms

The platforms array on a content object is the list of destinations the post will be delivered to.

ValueNetwork
instagramInstagram (Feed, Reels, Stories)
tiktokTikTok
youtubeYouTube (long-form and Shorts)
facebookFacebook Pages (Feed and Reels)
xX (formerly Twitter)
linkedinLinkedIn (Personal and Company)
whatsappWhatsApp Business
text_onlyphotoslideshowcarouselvideotalking_headvideo_hookreelstory
instagramyesyesyesyesyesyesyesyes
tiktokyesyesyesyesyes
youtubeyesyesyesyes
facebookyesyesyesyesyesyesyesyes
xyesyesyesyesyes
linkedinyesyesyesyesyesyes
whatsappyesyesyes

Requests that combine incompatible values return 422 unprocessable_entity.

Sometimes a caption needs to differ per network. Provide platform_overrides:

{
"platforms": ["x", "linkedin"],
"body_text": "Default caption.",
"platform_overrides": {
"x": { "body_text": "Short and punchy X copy." },
"linkedin": { "body_text": "Long-form LinkedIn version with two extra paragraphs." }
}
}

The keys in platform_overrides must be a subset of platforms. Any field omitted in an override falls back to the top-level value.

Platform connections are managed in the dashboard under Settings → Social accounts. The API cannot initiate OAuth, but you can list connected accounts with GET /social_accounts and receive social_account.connected / social_account.disconnected webhook events when the connection state changes.