Publish everywhere: inside the 13-network pipeline
By The Growvo Team
Every network wants something slightly different: X wants 280 characters, Bluesky clamps at 300 graphemes, LinkedIn rewards a link, Pinterest needs a title. Growvo’s publishing pipeline treats those differences as data, not busywork — you write once, and each network gets its own tuned variant.
The thirteen
Bluesky, Mastodon, X (Twitter), LinkedIn, Facebook, Instagram, Threads, Pinterest, TikTok, YouTube, Reddit, Google Business Profile — and a webhook target that turns any endpoint you own into network number thirteen. Connect an account once and it is available to the app, the API, the MCP server, and the n8n node alike.
One publish, honest per-network results
A crosspost is a single call, but the result is always a per-network list: each target reports its own ok, its remote URL, or exactly why it failed. One network being down never silently swallows the other twelve. Threads are first-class too — chain up to 25 follow-up posts and they publish as native replies on X, Threads, Bluesky, and Mastodon, while other networks take the lead post and say so in their result.
curl -X POST -H "Authorization: Bearer REDACTED" \
-H "Content-Type: application/json" \
-d '{"networks":["mastodon","bluesky"],"text":"Shipped v2 today",
"variants":{"bluesky":"Shipped v2 — thread below"}}' \
https://api.growvo.ai/v1/postsThe webhook target
The webhook network POSTs every publish to your own endpoint as JSON, signed with an HMAC-SHA256 header when you configure a secret. That makes Growvo a drop-in feed for Zapier, Make, n8n, or your own service — publish once in Growvo and fan out anywhere.
- Per-network variants apply on every publish, single-target or crosspost.
- A thread counts as one publish against your plan, no matter how many follow-ups it carries.
- Media registered via POST /v1/media is instantly usable in mediaUrls.
Thirteen networks is not a vanity number — it is one pipeline with thirteen honest exits. Connect yours at growvo.ai, or start from the API quickstart at /developers.