How-to guides
Practical guides for things social media APIs make hard: scheduling TikTok posts, cross-posting video, publishing Instagram carousels, automating with n8n, and more.
Schedule
Hold posts and publish at a precise time, even when the platform API does not support scheduling natively.
-
How to Auto-Post YouTube Shorts via API
Auto-publish YouTube Shorts at scale with Postproxy. Title, privacy, tags, category, AI-disclosure, and how scheduling actually works.
YouTube Shorts auto-publishing means dealing with the YouTube Data API: OAuth refresh tokens that silently revoke if the project isn't verified, a chunked resumable upload that has to survive flaky networks, and a Shorts heuristic that quietly demotes anything that isn't strictly 9:16 and ≤60 seconds. Most DIY pipelines die in week three when the refresh token expires unattended.
-
How to Post to Threads via API
Threads API is new and uses a Reels-style container flow. Here's the working pattern with Postproxy — text, image, video, multi-image, and reply chains.
Meta's Threads API shipped in mid-2024 with a small, scattered docs surface and few SDKs. The publish flow is a two-step container/publish dance similar to Instagram, with its own quirks: separate app review, separate access token, separate rate limits, a hard cap on daily posts per user, and undocumented edge cases around media containers expiring.
-
How to Schedule Instagram Reels via API
Instagram's Graph API doesn't accept future timestamps for Reels. Here's how to schedule Reels with Postproxy — container handling, processing waits, and exact-time publishing.
Instagram's Graph API publishes a Reel through a two-step container flow: create a media container, wait for it to finish processing, then publish. There is no scheduled_publish_time on the publish call. To go live at 8:00 AM Saturday, something on your side has to wake up Saturday morning, check the container is still ready, and fire the publish.
-
How to Post to a LinkedIn Company Page via API
Posting to a LinkedIn company page requires different OAuth scopes and a different author URN than personal posts. Here's the full pattern with Postproxy.
LinkedIn's API treats personal profiles and company pages as completely separate things. Posting on behalf of a company requires the w_organization_social scope, an organization-administrator OAuth flow, and a different author URN format (urn:li:organization:{id} instead of urn:li:person:{id}). Get any of these wrong and you get a 403 with a vague message.
-
How to Auto-Publish Pinterest Pins via API
Auto-pin every new blog post or piece of content to Pinterest. Real Postproxy params: board_id, destination_link, title, cover_url.
Pinterest is one of the highest-intent referral channels for blogs and creator sites — but the manual flow (open Pinterest, click create, upload image, retype the title, paste the link, choose the board) is the kind of repetitive task that gets dropped first when you're busy. The API exists; the friction is wiring it up: every pin needs a board_id, OAuth has to keep refreshing, and the docs don't cover the per-board routing pattern most content workflows want.
-
How to Schedule TikTok Posts via API
TikTok's Content Posting API has no native scheduling. Here's how to schedule TikTok posts with Postproxy — exact-time and queue-based, with the real request shapes.
TikTok's Content Posting API publishes immediately on every call. There is no scheduled_publish_time field, no draft state, no delayed-publish endpoint. If you want a TikTok post to go out at 9am next Tuesday, you have to keep your own server running, hold the request, and fire it at the right moment yourself.
Cross-post & repurpose
Push the same media to many platforms in one call, and adapt one source into platform-specific formats.
-
How to Cross-Post a Video to Every Social Platform via API
One MP4 to TikTok, Instagram Reels, YouTube, X, LinkedIn, Threads, Facebook, Pinterest, and Bluesky in a single API call. Spec table and code included.
Cross-posting one video to nine platforms means nine different OAuth flows, nine different upload endpoints, nine different aspect-ratio rules, nine different caption-length limits, and nine different async status pipelines. Half of them require a container-then-publish dance. The other half want a chunked upload. Doing this from scratch is a quarter of an engineering team for a quarter.
-
How to Publish an Instagram Carousel via API
Instagram carousels need N child containers, one carousel container, and a publish call. Postproxy collapses it to one POST.
Publishing an Instagram carousel via the Graph API means: create one child container per slide (up to 10), wait for each to finish processing, create a parent container with is_carousel_item=true children IDs, wait again, then publish. Any half-failure leaves orphan containers, and the 50-pending-container ceiling is easy to hit when retries pile up.
-
How to Repurpose YouTube Videos to Shorts, Reels, and TikTok
Turn one long-form YouTube video into vertical clips for Shorts, Reels, and TikTok. ffmpeg recipe + Postproxy publishing in one workflow.
A long-form YouTube video is 16:9 and 5-30 minutes. Shorts, Reels, and TikTok all want 9:16 and ≤60 seconds (Shorts) or short-form vertical (Reels, TikTok). Repurposing means cropping, picking timestamps, re-encoding, and then dealing with three different upload APIs that each have container-then-publish flows, status polling, and bespoke aspect-ratio rules.
Bulk & data sources
Drive scheduled publishing from spreadsheets, databases and CMS records.
-
How to Schedule Social Media Posts from Google Sheets
One row in a Google Sheet, one scheduled post across every platform. Apps Script + Postproxy.
Marketers want to plan four weeks of content in a spreadsheet. Native social platforms don't accept spreadsheets. The realistic options are: paste each post manually, build a custom CSV importer, or wire Sheets to a publishing API.
-
How to Schedule Social Media Posts from Airtable
Drive a multi-platform publishing pipeline from an Airtable base — automation script, status writeback, and review workflow.
Airtable is a strong content calendar — views, filters, attachments, multi-user editing — but it cannot post to social platforms. Connecting it requires either Zapier (per-task pricing, slow), Make (better, still glue), or an Airtable Automation script. The script needs to handle OAuth for every platform, retry on failure, and track which rows have already been published.
Automation & agents
Wire publishing into n8n, Zapier, Make, MCP servers and AI agents.
-
How to Automate Social Media Posting with n8n
Use the official Postproxy n8n integration to publish to TikTok, Threads, Pinterest, and 6 more platforms from any workflow.
n8n's built-in social nodes are uneven: X is fine, LinkedIn personal works, Facebook is partial. TikTok, Threads, Pinterest, and Bluesky have no first-party nodes — you fall back to HTTP Request, hand-rolled OAuth, and duplicated retry logic in every workflow.
-
How to Let AI Agents Publish to Social Media via MCP
MCP gives Claude Code, Cursor, and other LLM agents the ability to publish posts. Here's how to wire the Postproxy MCP server.
AI agents can write social posts, but they cannot publish them without a tool boundary. The Model Context Protocol (MCP) defines that boundary — a standard interface for LLMs to call external systems. Until you wire an MCP server, your agent is stuck describing the post it wants to send.
Ready to get started?
Start with our free plan and scale as your needs grow. No credit card required.