A complete payment layer for creator economy platforms. Accept payments, split revenue, manage creator wallets, and pay out — with a live ledger tracking every cent.
Every payout means pulling a Stripe export, running formulas, and hoping the math stays right. One off-by-one and you owe a creator money.
You know what Stripe processed. You don't know what each creator is owed right now, what's held, or what's already paid — not without building it yourself.
Bank logins, ACH files, manual confirmations. A payment operations stack built from duct tape that breaks exactly when you can least afford it.
One API layer handles the full payment lifecycle — from checkout to payout confirmation.
Hosted checkout sessions or direct API charges. Stripe handles the card rails; Soledgic handles the ledger.
Platform fee, creator share, and holds calculated and written to the ledger in the same database transaction — never out of sync.
Creator wallets update in real time. Query balances, pending amounts, and full transaction history via API.
Trigger ACH payouts programmatically. KYC status, eligibility checks, and a full audit trail are built in.
Capabilities
From the first payment to the final payout, Soledgic gives platforms a complete financial layer without stitching together a dozen vendors.
Hosted checkout sessions and direct charges that write to a double-entry ledger on completion. No separate reconciliation step — the ledger is the source of truth, always.
Platform fees, creator credits, and holds applied in the same transaction as the payment. Splits are never out of sync because they happen in the same database write.
Every creator gets a real-time earnings balance. Revenue, refunds, and credits update instantly. Build balance displays and activity feeds with one API call.
Check payout eligibility, verify KYC/KYB status, and trigger ACH transfers programmatically. Full audit trail on every payout, every time — no manual steps.
1099 workflows, W-9 collection, immutable receipts, and refund history built in. Download-ready exports so your accountant stops asking questions.
Behavioral risk signals, composite risk scores, and configurable fraud policies. The risk engine fires automatically on every payout, sale, and refund.
Developer-first
The Soledgic TypeScript SDK gives you typed access to the full platform — payments, wallets, payouts, webhooks, and compliance — without writing a line of financial logic yourself.
import { Soledgic } from '@soledgic/sdk';
const client = new Soledgic({ apiKey: process.env.SOLEDGIC_KEY });
// Onboard a creator — sets up wallet and revenue split
await client.creators.upsert({
externalCreatorId: 'creator_maya',
displayName: 'Maya Chen',
email: 'maya@example.com',
defaultSplitPercent: 95, // creator keeps 95%
});
// Create a checkout — revenue split runs atomically
const session = await client.purchases.create({
creatorId: 'creator_maya',
amount: 12000, // $120.00
productName: 'UX Fundamentals Course',
successUrl: 'https://your-platform.com/success',
});
// → ledger updated on payment confirmation
// → creator balance +$114.00 | platform fee +$6.00
// Request ACH payout when creator is eligible
await client.payouts.request({
participantId: 'creator_maya',
amount: 11400,
referenceId: 'payout_may_2026',
});Our belief
Every creator economy platform deserves financial infrastructure that just works.
We built what we wished existed: a compliance-ready, developer-friendly platform payment layer — so you can focus on your creators, not your payment stack.
Built for
Whatever kind of creator platform you're building, Soledgic handles the money layer so you don't have to.
Digital Commerce
Platforms where creators sell digital products, templates, or assets. Handle multi-vendor payouts, platform fees, refunds, and creator wallets at any scale — without building your own ledger.
Education
Take payments, split instructor revenue, track earnings by course, and pay out on schedule. 1099 reporting and compliance tooling are built in from day one — no bolt-on required.
Community
Recurring billing, wallet credits, and creator payouts that scale with your community. Build membership tiers with payment rails designed for high-volume creator monetization.
Pricing
Basic is free for the main owner. Additional active team members are $20/month each.
No credit card required to start. Payment processing fees apply separately via licensed payment partners. Enterprise teams can contact teams@soledgic.com.
Get started free. No credit card required. Full platform access from day one.
Start Building Free