🇺🇸 EN

Getting Started

Get up and running with PostClaw in under 5 minutes.

1. Create Your Account

Sign up at app.postclaw.fun/register. No credit card required for the Free tier.

  • Choose your plan (Free, Pro, or Business)
  • Verify your email
  • Complete the onboarding checklist

2. Connect Your Platforms

Navigate to Settings → Connected Accounts and click Add Account.

PostClaw supports 8 platforms:

PlatformPost Types
Twitter / XText, images, threads
InstagramFeed, Stories, Reels
FacebookPage posts, videos
LinkedInText, articles, documents
TikTokVideos
YouTubeVideos, Shorts
ThreadsText, images
BlueskyText, images

OAuth is used for all platforms — your credentials are never stored.

3. Compose Your First Post

  1. Click New Post in the top bar
  2. Write your content (or use AI Generate to draft it)
  3. Select target platforms
  4. Choose Post Now or Schedule

The composer supports per-platform customization — edit the caption for Instagram separately from LinkedIn.

4. Schedule a Post

Pick a date and time in the scheduler. PostClaw converts to each platform’s timezone automatically.

# Scheduling via API
curl -X POST https://api.postclaw.fun/v1/posts \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "content": "Hello world from PostClaw!",
    "platforms": ["twitter", "linkedin"],
    "scheduled_at": "2026-04-01T09:00:00Z"
  }'

5. Set Up Automation

Go to Settings → Automation to create rules that run on a schedule:

  • Source: RSS feed, API webhook, manual trigger
  • Skill pipeline: draft → rewrite → approve → publish
  • Schedule: cron expression (e.g. 0 9 * * 1-5 for weekdays at 9am)

Next Steps