PostLake publish
Publish a social media post right now to one or more connected accounts (X, LinkedIn, Instagram, TikTok, Facebook, Threads, Bluesky, YouTube, Pinterest) through PostLake. Use when …
PostLake
@postlake
Install
$ openclaw skills install @postlake/postlake-publishPostLake: publish a post now
Publishes one caption to as many connected accounts as you like, in one call.
Each platform is attempted independently and the response reports per-platform
state and url.
Auth
Authorization: Bearer $POSTLAKE_API_KEY
Base URL https://api.postlake.dev.
Choosing where to post
Two ways to say which accounts a post goes to: pick whichever is simpler:
- By profile (simplest): a profile is a named group of connected accounts
(a brand, a client, "me"). Pass
"profile": "my-brand"and it posts to every account in it. Add"platforms": ["bluesky","linkedin"]to narrow it to certain networks. No id lookup needed. - By account id (precise): pass
"accounts": ["acc_…"]for exact accounts. Get the ids from thepostlake-accountsskill (GET /v1/social-accounts).
Provide profile, accounts, or both. At least one is required.
Publish
# Simplest: post to a whole profile.
curl -X POST https://api.postlake.dev/v1/posts \
-H "Authorization: Bearer $POSTLAKE_API_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: $(uuidgen)" \
-d '{
"text": "Shipping something new today 🚀",
"profile": "my-brand"
}'
To hit specific networks in that profile add "platforms": ["bluesky"]; to
target exact accounts use "accounts": ["acc_84a4…","acc_e553…"] instead.
Response (normalised: reason over targets):
{
"id": "post_…",
"state": "published",
"targets": [
{ "platform": "bluesky", "state": "published", "url": "https://bsky.app/profile/…/post/…" },
{ "platform": "linkedin", "state": "published", "url": "https://www.linkedin.com/feed/update/…" }
]
}
state per target is one of published, processing (async platforms like
TikTok/YouTube: poll GET /v1/posts/{id} until final), failed (see
target.error), or scheduled.
Options
- Attach media: upload first with the
postlake-mediaskill, then pass the ids:"media": ["med_…"](with optional"mediaAlt": ["alt text"]). - Per-platform captions:
"textOverrides": { "x": "shorter for X", "linkedin": "…" }. - Platform-specific settings:
"platformOptions": { "pinterest": { "boardId": "…" }, "youtube": { "title": "…", "privacyStatus": "private" } }.
Rules to respect
- Idempotency: always send a unique
Idempotency-Keyheader so a retry replays the same result instead of double-posting. - X: needs a paid plan (X is the only network that charges). On a free plan an
X target returns
error.type: "entitlement_exceeded": other platforms still go out. Don't treat that as a total failure. - Media-required platforms: Instagram, TikTok, YouTube, Pinterest need media.
a text-only post to them fails with
invalid_input. - A
failedtarget never sinks the others; report which went out and which didn't.
Top skills in this category
Nano Banana Pro
@steipeteGenerate/edit images with Nano Banana Pro (Gemini 3 Pro Image). Use for image create/modify requests incl. edits. Supports text-to-image + image-to-image; 1K/2K/4K; use --input-image.
AdMapix
@fly0pantsAdMapix raw data layer for ad creatives, apps, rankings, downloads/revenue, and market metadata. Returns structured JSON from the AdMapix API; the calling ag...
YouTube Watcher
@michaelgatharaFetch and read transcripts from YouTube videos. Use when you need to summarize a video, answer questions about its content, or extract information from it.
SuperDesign
@mpociotExpert frontend design guidelines for creating beautiful, modern UIs. Use when building landing pages, dashboards, or any user interface.
Video Frames
@steipeteExtract frames or short clips from videos using ffmpeg.