Post to TikTok via API: the TikTok Content Posting API, explained (2026)

To post to TikTok via API you need an audited TikTok developer app, per-user OAuth, and the Content Posting API to upload a video or photo post. PostWire handles the audit, OAuth, and upload, so you publish to TikTok with one REST call or one MCP tool instead of building it yourself.

What is the TikTok Content Posting API?

TikTok's Content Posting API is the official endpoint that lets a registered developer app publish content to a creator's TikTok account on their behalf. It supports two content types: video uploads and photo (carousel) posts. You authenticate each creator with TikTok OAuth, request the video.publish (and related) scopes, then push media either by direct file upload or by giving TikTok a publicly reachable media URL to pull.

There are two posting modes. Direct Post publishes straight to the feed. Upload (draft) drops the content into the creator's TikTok app inbox so they tap "Post" to confirm. Which one you can use depends on whether your app has passed TikTok's audit.

Why the TikTok API requires an audit

This is the part that trips up most builders. TikTok gates the direct-post capability behind an app audit. Before your developer app is audited, the Content Posting API will only let you create unaudited / draft posts that the user must manually confirm inside the TikTok app — you cannot silently publish. To unlock true direct posting (the experience people expect from "post to TikTok via API"), TikTok reviews your app's use case, your content-disclosure UX, and your compliance with their content sharing guidelines.

The audit takes time, requires a working demo, and is a recurring source of rejection for solo developers and small teams. PostWire goes through the TikTok audit and OAuth flow for you, so your code never touches the approval process — you just call one endpoint.

Honest status: TikTok is in platform review at PostWire (June 2026)

To be straight with you: TikTok is not live on PostWire yet. As of June 2026, TikTok is in platform review together with Instagram, YouTube, X, and LinkedIn. The four networks you can post to right now are Bluesky, Telegram, Mastodon, and Discord.

The upside: the TikTok REST endpoint and MCP tool are already specified with the same shape as the live networks. When TikTok clears review, switching a post from Bluesky to TikTok is a one-word change in the platforms array — no new SDK, no new audit on your side.

Approach to "post to TikTok via API"You do the audit?OAuth + token refreshOther networks
Build directly on TikTok Content Posting APIYes — you own itYou build & maintainOne integration each, separately
PostWireNo — PostWire handles itManaged for you9 networks, one API + MCP

How you'll post to TikTok with PostWire

Once TikTok leaves platform review, posting is a single call. You connect a TikTok account once in the PostWire dashboard (PostWire runs the OAuth and stores the audited token), then publish a video by URL with a caption. Here is the REST shape:

curl -X POST https://postwire.io/api/v1/posts \
  -H "Authorization: Bearer $POSTWIRE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "brand": "my-brand",
    "platforms": ["tiktok"],
    "caption": "Behind the scenes of build day 12 #buildinpublic",
    "media": [
      { "type": "video", "url": "https://cdn.example.com/clip.mp4" }
    ]
  }'

The response returns a per-platform post id you can poll for status. Adding more networks is just more strings in platforms, e.g. ["tiktok","bluesky","mastodon"] — same payload, one request.

From an AI agent: the MCP tool

PostWire ships a first-class MCP server (not docs-only). Point your agent at it and the publish_post tool appears natively. Add PostWire to an MCP client like this:

{
  "mcpServers": {
    "postwire": {
      "command": "npx",
      "args": ["-y", "@postwire/mcp"],
      "env": { "POSTWIRE_API_KEY": "pw_live_xxx" }
    }
  }
}

Then the agent simply calls the tool — no HTTP plumbing, no OAuth code:

// MCP tool call the agent emits
{
  "name": "publish_post",
  "arguments": {
    "brand": "my-brand",
    "platforms": ["tiktok"],
    "caption": "Day 12. We shipped the API. #buildinpublic",
    "media": [{ "type": "video", "url": "https://cdn.example.com/clip.mp4" }]
  }
}

PostWire resolves the audited TikTok token, performs the Content Posting upload, and returns the post id back to the agent. The same tool posts to all 9 networks.

Pricing: flat per brand

PostWire prices by brand (connected account set), not per network or per post tier you have to babysit. TikTok posting is included on every paid plan once it ships.

PlanPriceBrands
Free$01 brand · 30 posts
Starter$9Single-creator
Pro$29Growing
Agency$9950 brands
Scale$299High volume

For comparison, running 50 brands on Ayrshare costs roughly $779 — and Ayrshare's MCP is documentation-only, so an agent can't actually post through it. See PostWire vs Ayrshare.

Connect TikTok in the dashboard →

FAQ

Can I post to TikTok via API?
Yes. TikTok exposes a Content Posting API that lets approved apps publish videos and photo posts to a creator's account. It requires an audited TikTok developer app plus per-user OAuth. PostWire wraps that audit, OAuth, and upload flow behind one REST call and one MCP tool.
Why does the TikTok Content Posting API require an audit?
TikTok gates direct-post (publishing without a manual confirmation in-app) behind an app audit to verify your use case, content policy, and UX. Until your app passes audit, posts can only be created as drafts that the user must confirm. PostWire goes through this audit so you do not have to.
Is PostWire's TikTok support live yet?
Not yet. As of June 2026, TikTok is in platform review at PostWire, alongside Instagram, YouTube, X, and LinkedIn. Bluesky, Telegram, Mastodon, and Discord are live now. The TikTok endpoint and MCP tool are already specified so your integration is a one-line change when it ships.
How do AI agents post to TikTok with PostWire?
PostWire ships a first-class MCP server. An AI agent calls the publish_post tool with platforms set to tiktok, a video URL, and a caption. PostWire handles OAuth tokens, the TikTok audit scope, and the upload, then returns a post id. The same action is available as a REST POST for non-agent code.
How much does posting to TikTok cost with PostWire?
PostWire uses flat per-brand pricing: Free $0 (1 brand, 30 posts), Starter $9, Pro $29, Agency $99 for 50 brands, and Scale $299. TikTok posting is included on every paid plan once it leaves platform review.