Accept credit cards, Apple Pay, Google Pay, Afterpay, Zip and more at just 2.4% + 30¢ per transaction. Create custom payment links in seconds and get paid faster.
Australian businesses only • Valid ABN required
Amount Due
$250.00
Share via:
2.4% + 30¢ per transaction • +2% for international cards
* BPAY available with custom pricing - contact us for details
Powerful features designed for modern businesses
Enter the amount, add a description, and generate your payment link in seconds.
Send via email, SMS, or show the QR code. Your customer opens and pays.
Receive instant notification and funds directly to your account.
Choose the plan that works for you
Annual pricing: overages billed monthly
2.4% + 30¢ per transaction*
Up to $10k, then 0.5% overage
Integrate Ways2Pay into your existing software and workflows with our powerful API. Create payments, track status, and manage transactions programmatically.
Simple, well-documented REST API with webhook support for real-time updates.
Connect to your CRM, ERP, or custom software in minutes with our SDKs and code examples.
Test your integration thoroughly with our sandbox before going live.
// Create a payment request
const payment = await ways2pay.payments.create({
amount: 25000, // $250.00
description: "Invoice #1234",
reference: "INV-1234",
customer: {
email: "customer@example.com",
mobile: "+61412345678"
}
});
// Send payment link
await ways2pay.payments.send(payment.id, {
method: "sms" // or "email"
});
console.log(payment.paymentUrl);
// => https://w2p.au/AB12C