FoPost LogoFoPost Docs
Introduction

What is FoPost?

FoPost is a social media management platform for creators, teams, and developers.

What is OwlStack?

OwlStack is a social media management platform that lets you publish and manage content across 11+ platforms. Use it through the dashboard (no code needed) or integrate it into your application using our SDKs and REST API.

For Creators & Teams

Use the OwlStack dashboard to:

  • Write once and publish to all your social platforms at once
  • Schedule posts for optimal timing
  • Use AI to generate and optimize your content
  • Track performance with built-in analytics
  • Collaborate with your team

For Developers

Integrate OwlStack into your application using our SDK:

use OwlStack\Post;
use OwlStack\Enums\Platform;
use OwlStack\Cloud\OwlStackClient;

$client = new OwlStackClient(apiKey: env('OWLSTACK_API_KEY'));

$post = Post::create('Launching our new product!')
    ->withMedia(Media::image('/path/to/photo.jpg'))
    ->withHashtags(['launch', 'startup']);

$results = $client->publish($post, [
    Platform::Twitter,
    Platform::LinkedIn,
    Platform::Telegram,
]);

How it works

  1. You write content using OwlStack's clean PHP SDK (Post, Media, etc.)
  2. OwlStack's cloud handles all platform APIs, formatting, rate limiting, and delivery
  3. You get results back with delivery status, external URLs, and error details

You never interact with Twitter's API, Telegram's Bot API, or LinkedIn's Graph API directly. OwlStack handles all of that on the server side, so you don't have to maintain 11 different API integrations.

Supported platforms

PlatformFeatures
TelegramChannels, groups, media groups, inline keyboards
Twitter/XThreads, polls, quote tweets
FacebookPages, scheduled publishing
LinkedInPersonal profiles, company pages
DiscordRich embeds, file attachments
InstagramCarousels, Reels, Stories
PinterestBoard and section targeting
RedditSelf posts, link posts, flair
SlackBlock Kit messages
TumblrNPF content blocks
WhatsAppTemplate messages, documents

What You Install (Developers)

OwlStack provides lightweight SDK packages that communicate with the cloud service:

PackageStatusPurpose
owlstack/coreAvailablePHP interfaces, value objects, enums (MIT)
owlstack/cloudAvailablePHP API client for api.owlstack.app
owlstack/laravelAvailableLaravel service provider, facade, events
owlstack/wordpressAvailableWordPress plugin with admin panel
@owlstack/nodeComing SoonNode.js / TypeScript SDK
owlstack (PyPI)Coming SoonPython SDK
owlstack-goComing SoonGo SDK
owlstack (RubyGems)Coming SoonRuby SDK
owlstack (Cargo)Coming SoonRust SDK

The SDKs are thin clients. All the heavy lifting (platform API calls, formatting, retries, AI) happens on OwlStack's servers.

Plans

PlanSocial AccountsAI Credits/moKey Features
Starter ($19/mo)10200Basic analytics, 10 GB media, 1 workspace
Pro ($49/mo)101,000Advanced analytics, 50 GB media
Pro Plus ($99/mo)302,000Unlimited media, 3 workspaces, Advanced API

All plans include unlimited scheduled posts, unlimited team members, AI Content Studio, and priority support.

View pricing details

On this page