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:
| Platform | Post Types |
|---|---|
| Twitter / X | Text, images, threads |
| Feed, Stories, Reels | |
| Page posts, videos | |
| Text, articles, documents | |
| TikTok | Videos |
| YouTube | Videos, Shorts |
| Threads | Text, images |
| Bluesky | Text, images |
OAuth is used for all platforms — your credentials are never stored.
3. Compose Your First Post
- Click New Post in the top bar
- Write your content (or use AI Generate to draft it)
- Select target platforms
- 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-5for weekdays at 9am)
Next Steps
- Social Publishing — platform-specific options
- AI Tools — generate text, images, and video
- API Reference — automate with the REST API