How Postqued
Works
From API key to published TikTok in minutes. Here's the complete workflow for automating your content.
Get your API key
Sign up and generate an API key from your dashboard. This key authenticates all your requests to Postqued.
curl -H "Authorization: Bearer pq_sk_..."
Connect TikTok account
Link your TikTok account via OAuth. We'll securely store your access token so you can publish content programmatically.
GET /v1/platform-accounts/connect?platform=tiktok
Upload your content
Start an upload session, upload your video or images, then confirm completion. Your content is securely stored and ready to publish.
POST /v1/content/upload POST /v1/content/upload/complete
Publish to TikTok
Call the publish endpoint with your content ID and target TikTok accounts. Add an Idempotency-Key header to prevent duplicate posts.
POST /v1/content/publish
{
"contentId": "cnt_abc123",
"targets": [{
"accountId": "acc_xyz789",
"caption": "Posted via API!"
}]
}Track status
Monitor your publish request status. Get notified when content goes live or if any issues occur.
GET /v1/content/publish/:publishId // Returns: pending, processing, completed, failed
Using an AI Agent?
Skip the manual integration. Install Postqued as an OpenClaw skill and let your AI agent handle everything.