Accept payments from anywhere
with one platform.
A modern payment platform built for global businesses. Onboard in minutes, integrate in hours, settle to your bank account anywhere in the world.
Total revenue
$284,512
+18.2%
Successful payments
12,847
+24.0%
Success rate
99.6%
+0.3%
Recent activity
Trusted by businesses worldwide
Everything you need to grow revenue
A complete fintech stack — payments, wallets, invoicing, and APIs.
Bank-grade security
End-to-end encryption, PCI-DSS aligned infrastructure, 2FA, and never any card storage on our side.
Developer-first API
Clean REST API, signed webhooks, idempotency, and SDKs to ship in hours instead of weeks.
Built-in wallet
Track balances, automatic reconciliation, transparent fees, and on-demand payouts to your bank.
Invoices & payment links
Create branded invoices and shareable payment links in one click.
Multi-currency
Accept payments in 135+ currencies and settle to your local account.
Real-time analytics
Live dashboards for revenue, success rate, customers, and cohorts.
Live in four steps
From sign-up to your first successful payment in under 10 minutes.
Create your account
Tell us about your business — no credit card required.
Add your bank details
We auto-detect your bank from your IBAN or account number.
Connect your account
Link your business account to start receiving payouts.
Start collecting
Use the API, hosted invoices, or shareable payment links.
Simple, transparent pricing
Pick the plan that fits your stage. Switch anytime.
Free
Pay only for successful payments. Perfect to get started.
- Unlimited payments
- Hosted invoices & links
- Basic analytics
- Email support
- Per-transaction pricing
A clean, predictable API
REST endpoints, signed webhooks, sandbox keys, and battle-tested SDKs. Ship payments without the complexity.
const res = await fetch("https://api.vabpay.com/v1/payments", {
method: "POST",
headers: {
"Authorization": "Bearer sk_live_••••",
"Content-Type": "application/json"
},
body: JSON.stringify({
amount: 2500,
currency: "USD",
description: "Pro subscription",
customer: { email: "ada@example.com" },
return_url: "https://shop.com/success"
})
});
const { id, payment_url } = await res.json();
// redirect customer to payment_url