Quick Start
Get up and running with FoPost in minutes.
Quick Start
Get started with OwlStack in just a few minutes — whether you're using the dashboard or integrating via the API.
For Creators & Teams
No coding required. Sign up, connect your accounts, and start publishing.
1. Create an Account
Sign up at app.owlstack.app — it's free to get started.
2. Connect Your Social Accounts
Go to Settings → Accounts and connect the platforms you want to publish to:
- Instagram, Twitter/X, Facebook, LinkedIn
- Telegram, Discord, Pinterest, Reddit
- Slack, Tumblr, WhatsApp
3. Create Your First Post
Click New Post, write your content, select your platforms, and hit Publish — or schedule it for later.
For Developers (PHP)
Install the SDK and publish your first post in under 5 minutes.
1. Install the SDK
composer require owlstack/owlstack-core2. Get Your API Key
Go to app.owlstack.app → Settings → API Keys and generate a new key.
3. Publish a Post
use OwlStack\OwlStack;
$owlstack = new OwlStack('your-api-key');
$owlstack->publish([
'content' => 'Hello from OwlStack! 🦉',
'platforms' => ['twitter', 'linkedin', 'telegram'],
]);For Developers (REST API)
Use the API directly from any language.
curl -X POST https://api.owlstack.app/v1/posts \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"content": "Hello from OwlStack! 🦉",
"platforms": ["twitter", "linkedin", "telegram"]
}'