Plans
Sosyabot offers four plans — Free, Starter, Pro and Business — each unlocking more channels, posts and AI credits.
Why it matters
The plan you pick decides how much you can do each month: how many social accounts you connect, how many posts you publish, and how many AI credits you get for writing and creating content.
Step by step
Open the Plans page
Click your account menu, then click Plans to see all four tiers side by side.
Compare what each includes
Read down each column to see the monthly AI credits, number of social accounts, and posts allowed.
Pick the plan that fits you
When one looks right, click Upgrade on that plan to start. A free plan is always available if you just want to try things out.
TIP
Not sure where to start? The Free plan lets you explore Sosyabot at no cost, and you can upgrade any time.
Good to know
- Every plan sets how many channels you can keep connected, how many posts you can publish, and how many AI credits you get each month. The exact numbers are on the pricing page and in Billing → Usage inside the app.
- Those numbers are not written down here on purpose: an administrator can change them, so any figure typed into this page would eventually be wrong. The app always shows the live ones.
- The channel allowance counts active channels. Pausing a channel frees its slot, and a paused channel is not deleted — see Channel limits.
Related
For developers
The public list comes from GET /api/v1/plans, which returns every plan with is_public: true (rate-limited, 5-minute cache). Defaults are seeded by backend/src/scripts/seed-default-plans.ts (free, starter, pro, business).
Each plan carries a limits object that gates feature usage:
{
social_accounts: number, // active channels; 999999 = unlimited
posts_per_month: number, // 999999 = unlimited
ai_credits: number,
team_members: number,
storage_mb: number,
scheduled_posts_max: number,
}Plus a features array of the human-readable bullets shown on the pricing page. Admins customize these from Plans Admin.