Insolitum Developers

Pricing & Revenue

Pricing tiers, revenue share model, and payout schedule for Insolitum Universe partner modules.

Pricing & Revenue

Earn revenue by publishing paid modules in the Insolitum Universe Marketplace.

Revenue Share

PartnerPlatform
Revenue split70%30%

For every subscription payment from an organization using your module, you receive 70% of the revenue.

Pricing Tiers

Set up to 4 pricing tiers for your module:

TierDescriptionExample
FreeLimited features, great for trialUp to 10 items, basic dashboard
StarterCore features for small teamsUnlimited items, 5 users
ProfessionalFull featuresUnlimited everything, API access
EnterpriseCustom features, SLAPriority support, custom integrations
PerpetualOne-time payment, lifetime accessFull features, no recurring cost

Pricing Format

interface MarketplaceModule {
  // Free tier limits
  price_free_limits: {
    max_items: 10,
    max_users: 3,
  };
 
  // Monthly prices (EUR)
  price_starter: 29;        // €29/month
  price_professional: 79;   // €79/month
  price_enterprise: 199;    // €199/month
  price_perpetual: 999;     // €999 one-time
 
  // Your share
  revenue_share_percent: 70;
}

Payout Schedule

Details
FrequencyMonthly
Payout dateBy the 15th of the following month
Minimum payout€50
CurrencyEUR

If your earnings are below €50, they roll over to the next month.

Revenue Dashboard

Track your earnings in the Partner Panel:

  • Total revenue per module
  • Active subscriptions count
  • Monthly trend (installs + revenue)
  • Pending payouts
  • Average rating and review count
interface PartnerModuleStats {
  module_id: string;
  module_name: string;
  total_installs: number;
  active_subscriptions: number;
  total_revenue: number;
  pending_payout: number;
  avg_rating: number;
  review_count: number;
  monthly_trend: {
    month: string;
    installs: number;
    revenue: number;
  }[];
}

Transaction Types

TypeDescription
subscriptionNew monthly/yearly subscription
renewalRecurring subscription payment
upgradePlan upgrade (starter → professional)
perpetualOne-time perpetual license purchase

On this page