Skip to main content
POST
/
publish
/
tiktok
Publish to TikTok
curl --request POST \
  --url https://api.supapo.st/publish/tiktok \
  --header 'Content-Type: application/json' \
  --data '
{
  "accountId": "<string>",
  "imageUrls": [
    "<string>"
  ],
  "title": "<string>"
}
'
{
  "success": true,
  "message": "Slideshow sent to TikTok drafts!",
  "publishId": "tiktok-publish-id"
}
Publishes images to a connected TikTok account. The post is sent to TikTok drafts for final review before going live.

Authentication

Authorization
string
Bearer token. Bearer <supabase-jwt>.

Body

accountId
string
required
ID of the connected TikTok social account.
imageUrls
string[]
required
Array of image URLs to include in the slideshow.
title
string
default:"New slideshow"
Caption for the TikTok post.
{
  "success": true,
  "message": "Slideshow sent to TikTok drafts!",
  "publishId": "tiktok-publish-id"
}