Skip to main content
All use cases
White-label / EmbedFintechs

Your brand. CodeSpar's whole rate card underneath.

Fintera wanted its subscribers to pay boletos and Pix bills from inside its own app, without becoming a regulated payments company itself. With Embed, Fintera's org runs CodeSpar's entire published rate card white-label: every subscriber onboards as a consumer scoped to Fintera's org, every fee accrues automatically against the same rate card everyone else pays, and Fintera's split sweeps to its own wallet on schedule. No rev-share to negotiate, no platform fee, no minimum — and the R$4.90 monthly cap per active payer is what makes a R$24.90 subscriber plan actually profitable to run.

BeforeApply for a PSP license, or split revenue with one
AfterRun the published rate card, under Fintera's own brand
R$4.90
consumer cap makes a low-ticket end-customer plan pencil out
Try it in the Sandbox
Full rate card
White-label, published
Fintera's org runs every line CodeSpar publishes — no side deal
R$4.90/mo
Consumer cap
Ceiling per active payer — what makes a low-ticket plan pencil out
Auto-accrued
Every fee
Each subscriber's activity posts against the same published rate
Scheduled
Split sweep
Fintera's cut settles to its own wallet, no manual run
What Fintera's finance team sees

One statement, every subscriber's activity rolled up.

One monthly rollup, end to end: gross Pix and boleto volume across every subscriber, fees accrued line by line against the same published rate card CodeSpar publishes to everyone, the R$4.90 cap holding heavy users at a ceiling, and the net split swept to Fintera's own wallet on schedule.

  • Every subscriber onboards as a consumer scoped to Fintera's org — same published rate card as everyone else
  • The R$4.90 cap holds active payers at a ceiling so the R$24.90 plan keeps its margin
  • Fintera's split sweeps to its own wallet on schedule — no manual settlement run

Show me this month's Embed settlement for Fintera.

Pulling August's rollup — 41,200 active payers, fees accrued per line against the published rate card, held at the R$4.90 cap where it applied.

Embed settlement · white-label rollup
STMT-2026-08 · Fintera
Swept · reconciled
Active payers41,200 consumers
VolumePix + boleto, per published rate
Fees accruedCapped at R$4.90 / payer
Split sweptScheduled · Fintera wallet
Rate cardSame published lines, no side deal
embed-statement-2026-08.csvsettlement-receipt.json
swept · reconciled · sealedrcp_embed202608
The pain

The conversation is the easy part.

Consumer fintechs that want to add bill-pay hit the same wall twice: spend a year applying for a payments license, or bolt on a processor's SDK and give up a rev-share that eats the subscription margin before it reaches the P&L. Neither path lets a R$24.90-a-month plan pencil out.

Apply for a payments license just to let subscribers pay a boleto

Fintera's org runs CodeSpar's entire published rate card white-label

Negotiate a custom rev-share that nobody can predict at scale

No rev-share, no platform fee, no minimum — the published rate is the rate

Eat the fee on every heavy user until the subscription plan loses money

The R$4.90 consumer cap holds fees at a ceiling per active payer

Chase a manual settlement run to see what's actually owed

Splits sweep to Fintera's own wallet on a schedule, reconciled automatically

How the agent does it

Fintera's org, running CodeSpar's published rate card.

codespar_kyc onboards each subscriber as a consumer scoped to Fintera's org. codespar_pay executes the Pix or boleto and accrues its fee against the same rate card every CodeSpar customer pays, held at the R$4.90 monthly cap per active payer. codespar_wallet sweeps Fintera's split to its own wallet on a fixed schedule, and codespar_ledger reconciles the rollup. Provisioning Fintera's org onto the rate card is a hands-on setup with the CodeSpar team today, not a self-serve signup — once live, every subscriber onboards the same way.

01
Onboard
Fintera app

Subscriber signs up in Fintera

02
Verify
codespar_kyc

Consumer scoped to org_fintera

KYC rail
03
Move money
codespar_pay

Pix or boleto, published rate

Pix rail
04
Accrue
codespar_ledger

Fee posts, capped at R$4.90

Rate card
05
Sweep
codespar_wallet

Split settles, weekly schedule

Wallet rail
Architecture

Fintera's org is provisioned onto CodeSpar's full published rate card by the CodeSpar team — a hands-on setup today, not a self-serve signup. Once live, every Fintera subscriber onboards as a consumer scoped to that org. Each Pix or boleto payment accrues its fee automatically against the same rate card every CodeSpar customer pays, held at the R$4.90 cap per active payer on declared B2C deployments. Splits settle to Fintera's own wallet on a fixed schedule, reconciled and sealed, so Fintera's finance team never runs a manual settlement.

In code

A few lines. The whole loop.

white-label-monetization.ts
const session = await codespar.sessions.create({ org: "org_fintera" });

// each subscriber onboards as a consumer scoped to Fintera's org
const consumer = await session.execute("codespar_kyc", {
  scope: "org_fintera",
  taxId: subscriber.cpf,
});

// every payment accrues its fee against the same published rate card,
// held at the consumer cap so a low-ticket plan still pencils out
await session.execute("codespar_pay", {
  rail: bill.boleto ? "boleto" : "pix",
  amount: bill.total,
  consumer: consumer.id,
  cap: { perPayer: "R$4.90", period: "monthly" },
});

await session.execute("codespar_ledger", { consumer: consumer.id });

// Fintera's split sweeps to its own wallet on schedule — no manual settlement
await session.execute("codespar_wallet", {
  action: "sweep",
  destination: "wallet_fintera",
  schedule: "weekly",
});
R$4.90 · sealedreceipt · rcp_white-
Featured tools
codespar_pay

Executes each subscriber's Pix or boleto, fee accrued against the same published rate card.

codespar_wallet

Sweeps Fintera's split to its own wallet on a schedule, no manual settlement run.

codespar_kyc

Onboards each subscriber as a consumer scoped to Fintera's org.

See the meta-tool reference
MCP servers wired

Ship it this afternoon.

Open the sandbox, point a session at your providers, and run the whole loop against real rails in minutes — not the quarter it takes to build it by hand.

White-label monetization — CodeSpar | CodeSpar