paas.build Go live
For Base44 builders

Real payments in your Base44 app — no company, any country

When you tell Base44 "add payments," it installs Stripe or Base44 Payments (powered by Wix). Both are solid — until you read the fine print: a registered business and a bank account in a supported country before you can take a single real payment. paas.build removes that wall. A live merchant account the same day, no company, 3.9% flat — wired into Base44 through surfaces it already supports.

Why builders hit a wall on Base44 payments

Three things Base44's built-in payments can't do — straight from Base44's own docs and feedback board:

paas.build fixes all three: progressive KYB means live the same day with no company; FCA rails cover merchants Stripe/Wix lock out; and because you're the merchant on our 24/7 rails, recurring billing runs server-side.

Wire it in — three ways Base44 already supports

Pick one. You don't need Base44's permission or a partnership — these are documented Base44 surfaces.

Build-time · easiest

1 · Add paas.build as a custom MCP connection

In Base44: Settings → Account → MCP connections → Add custom MCP. Base44's AI then "treats MCP connections as tools it can call when your request requires external data or actions." Base44 docs

# Name paas.build # Server URL https://mcp.paas.build/sse # Auth API key (your paas.build key)

Now say to the Base44 chat: "use paas.build to create a live merchant account and a checkout." Note Base44's limit — MCP runs in the editor chat while you build, not at app runtime; use it to provision + scaffold, then one of the runtime paths below to charge.

Runtime

2 · Register paas.build as a custom integration (OpenAPI)

A workspace admin adds our OpenAPI spec once; your app then calls it at runtime via base44.integrations.custom.call(), with your key stored as an encrypted workspace secret. Base44 docs

# OpenAPI spec https://paas.build/openapi.json # then, in your Base44 app: const { shortLink } = await base44.integrations.custom.call( "paasbuild", "createCheckout", { vendorId, amount: 29, currency: "GBP" } );
Runtime · universal

3 · Call paas.build from a Base44 backend function

Backend functions "run on the server, so you can safely store API keys and secrets as environment variables" and fetch any external API. Base44 docs

// Base44 backend function export default async function createCheckout({ amount }) { const r = await fetch("https://paas.build/api/checkout", { method: "POST", headers: { "content-type": "application/json" }, body: JSON.stringify({ vendorId: Deno.env.get("PAAS_VENDOR_ID"), amount, currency: "GBP" }) }); return await r.json(); // { shortLink, sessionToken } }

The cost, at Base44-app ticket sizes

On a $9 subscriptionFeeEffective
Stripe / Wix Payments pattern (5% + $0.50)$0.9510.6%
paas.build (3.9% flat)$0.353.9%
Base44 gets you to a working app in minutes. paas.build gets that app paid in minutes — no company, any country, your brand on the checkout, 3.9% flat. Start here: go live in one prompt.
FAQ

Does Base44 support payment providers other than Stripe and Wix?

Base44's built-in options are Stripe and Base44 Payments (powered by Wix), plus Tranzila/Max for Israel. But Base44 lets you wire ANY external service three ways: a custom MCP connection, a custom OpenAPI integration, or a backend function. paas.build plugs in through all three, so a Base44 app can take payments even where Stripe and Wix Payments aren't available.

Can I take payments on a Base44 app without a registered company?

Yes - that's the gap paas.build fills. Stripe live mode and Wix Payments both require a registered business and bank account first. paas.build uses progressive KYB: your Base44 app goes live with a real capped merchant account the same session, and verification completes in the background. No company needed to start.

What about countries Stripe and Wix Payments don't support?

Base44's own users have asked for this repeatedly (the top payments request on their feedback board). paas.build runs on FCA-authorised UniPaaS rails and onboards builders in the UK, EU and US, with your customers able to pay from anywhere - covering merchants Stripe and Wix Payments lock out.

Do subscription renewals work reliably on Base44?

Base44's webhooks only fire while someone is actively using your app, which breaks 3am renewals, retries and dunning. Because paas.build is the merchant/PayFac running its own 24/7 rails, recurring billing, failed-payment retries and dunning run server-side, independent of app sessions.

How much does it cost?

3.9% flat per transaction. No monthly fee, no setup fee, no fixed per-transaction fee - so a $9 subscription costs $0.35, versus roughly $0.95 at a typical Merchant of Record.