Payments for creator platforms

Add checkout, creator balances, and payouts with one API.

Soledgic is the managed payment backend for platforms that collect from buyers and pay many creators. We host checkout, calculate every fee and revenue split, maintain creator earnings balances, enforce payout readiness, and send payouts while your product owns the user experience.

Free sandbox · Live access after KYB · 3.5% + 30¢ per successful USD card transaction

One payment, start to finish

From buyer checkout to creator payout.

Create the creator, open checkout, apply the revenue split when payment completes, show the creator's available balance, then request payout when they are eligible. The same ledger state powers your product, your operator dashboard, and your audit trail.

Buyers get hosted checkout

Send buyers to a payment page tied to the creator, product, amount, and your stable order ID.

participant → checkout

Creators get a real balance

On confirmed payment, Soledgic posts its fee and your creator/platform split atomically, then exposes available and held earnings.

split → wallet balance

Operators get control

Check payout eligibility, review holds and refunds, reconcile activity, and trace every balance change from the dashboard or API.

eligibility → payout

What Soledgic operates

The payment backend, without hiding the financial state.

Your app keeps its own customer experience. Soledgic operates the money state and exposes it through a typed SDK, signed webhooks, a sandbox, and operator tooling.

  • Atomic ledger posting for fees, splits, holds, and refunds
  • Creator-facing state for balances, activity, and payout readiness
  • Operator controls for reconciliation, risk, tax, and support
  • Safe integration primitives with stable idempotency keys and signed webhooks
example.ts@soledgic/sdk
import { Soledgic } from '@soledgic/sdk';

const client = new Soledgic({ apiKey: process.env.SOLEDGIC_KEY });

await client.creators.upsert({
  externalCreatorId: 'creator_maya',
  displayName: 'Maya Chen',
  email: 'maya@example.com',
  defaultSplitPercent: 95,
});

const session = await client.purchases.create({
  creatorId: 'creator_maya',
  amount: 12000,
  productName: 'UX Fundamentals Course',
  externalOrderId: 'order_ux_1042',
  successUrl: 'https://your-platform.com/success',
});

const { eligibility } = await client.payouts.getEligibility('creator_maya');
if (eligibility.eligible) {
  await client.payouts.request({
    participantId: 'creator_maya',
    amount: eligibility.availableBalanceCents,
    referenceId: 'payout_may_2026',
  });
}

Pricing

Start with managed creator payments.

Sandbox access is free. Live card transactions use one platform fee for hosted checkout, wallet ledgering, and the creator-payment workflow.

Free

Free

3.5% + 30¢ fee per successful USD card transaction

  • Checkout and payment orchestration
  • Creator wallets, balances, and activity feeds
  • Atomic revenue splits, holds, and ledger entries
  • Payout operations with KYC/KYB eligibility checks
  • Tax-ready records: 1099 workflows, W-9 collection
  • Risk engine and fraud policy controls
  • Signed webhooks and TypeScript SDK
  • Sandbox, team access, and email support
Get Started Free
Enterprise

Custom

Custom terms for larger platforms

  • Custom transaction terms
  • Operator-managed billing
  • Dedicated implementation support
  • Custom controls and review
  • Priority support
Contact sales@soledgic.com

No credit card required for sandbox. Enterprise teams can contact sales@soledgic.com.

Ready to build on Soledgic?

Start with the complete sandbox. Move to live payments after business verification.

Run a Sandbox Payment