CleonPay

Every way
the world pays.

Cards, wallets and the local methods your customers actually reach for, plus payouts to individuals. One integration, wherever you sell. Your bank settles you directly.

Talk to us Documentation
Coverage

The methods that decide
whether a checkout converts.

A Dutch customer expects iDEAL. A Belgian expects Bancontact. Someone in Shanghai expects WeChat Pay. Offering only cards quietly costs you the sale.

VISA
Visa
Worldwide
Mastercard
Worldwide
American Express
Worldwide
Apple Pay
Worldwide
Google Pay
Worldwide
iDEAL
NL
Bancontact
BE
Multibanco
PT
MB WAY
PT
Przelewy24
PL
EPS
EPS
AT
Paysera
Worldwide
Satispay
IT
WeChat Pay
Worldwide
UnionPay
Worldwide
paysafecard
Worldwide

Currencies, countries and refund rules for each →

Integration

One request,
whichever method.

A card, a Dutch bank redirect, a Portuguese cash voucher. All the same shape. Adding a method means changing one field, not writing another integration.

Scheme rules are checked before a bank is called, so an unsupported currency comes back as a precise error rather than an opaque decline.

Read the quickstart
Create a payment
curl https://api.cleonpay.com/v1/payments \
  -H "Authorization: Bearer ck_live_..." \
  -H "Idempotency-Key: order-1001" \
  -d '{
    "method": "ideal",
    "amount": 1050,
    "currency": "EUR",
    "country": "NL",
    "success_url": "https://shop.example.com/thanks",
    "error_url": "https://shop.example.com/failed"
  }'
Reach

Wherever the money
needs to land.

Local methods, card schemes and bank rails across Europe, Asia and the Americas, behind one contract and one integration.

How it works

Four steps.
None of them ours.

We create the payment, the customer pays, we tell you, and the institution settles you directly. Your money never sits with us.

1

Create a payment

You get an id and a URL to send the customer to.

2

The customer pays

On their bank's page, in a wallet, or at a cash machine days later.

3

We tell you

A signed webhook when the money actually moves, not when the browser comes back.

4

Your bank settles you

Funds go from the institution straight to your account.

admin.cleonpay.com
Processed
€48,210
Success rate
96.4%
Revenue
€612
iDEAL €25.99 Successful
Bancontact €142.00 Successful
VISA Visa €68.50 Successful
Multibanco €19.99 Awaiting
Built for what actually happens

Payments are asynchronous,
unreliable and full of exceptions.

Most of the work is in the cases nobody demos.

Settlement is not the redirect

A customer landing on your success page means their browser came back. Only the webhook proves the money moved, and Multibanco can take days because the customer pays at a cash machine.

Failover that cannot double charge

A declined payment can retry at another institution. One that timed out never does, because the outcome is unknown and charging twice is worse than losing the sale.

Signed, retried webhooks

Every delivery carries an HMAC signature and is retried for 24 hours. Receiving the same event twice is safe by design.

Scheme rules up front

Multibanco cannot be refunded at all. Przelewy24 stops at 90 days. The API knows, and tells you before a bank does.

Amounts in minor units

Integers throughout. A decimal amount is refused rather than guessed, because a ledger that drifts by a cent cannot be reconciled.

A sandbox for the hard cases

Force a decline, an abandonment, or a settlement that lands thirty seconds late. Test what a real acquirer will not perform on request.

Send a payout
{
  "recipient_id": "6d4ff39f-72fb-44c4-9e13",
  "method": "card_payout",
  "amount": 2500,
  "currency": "EUR",
  "reference": "PAYOUT-2026-0001"
}
Payouts

Paying people is
a different problem.

Winnings, marketplace balances, contractor pay. Money out to someone who may never have paid you, to a card or a bank account, over the same API.

Card details never reach us. A recipient is created from a token or a payment they already made, which keeps both sides out of the heavier parts of PCI DSS.

More on payouts

Start in the sandbox.

Integrate and test before any commercial conversation. No money moves and no bank approval is needed.

Request access Quickstart