This is a demo platform showcasing blockchain billing capabilities. Use the test credentials below or create your own account.
[email protected] / admin123[email protected] / demo123[email protected] / demo123[email protected] / demo123[email protected] / demo123Accept payments in any fiat currency, settled instantly via stablecoins on the blockchain.
Built on the open Transaction Authorization Protocol for standardized blockchain payments.
No more waiting days for funds. Blockchain settlements happen in minutes, not days.
Automated recurring billing with TAIP-15 authorized connections for seamless payments.
Track usage and bill customers based on consumption with flexible metered pricing.
Familiar Stripe-like APIs make integration easy for developers already using payment platforms.
See how easy it is to integrate blockchain payments into your application. These examples use the demo merchant account credentials.
Generate a one-time payment request for your customer
// Create a one-time invoice
const response = await fetch('https://flowpsp.notabene.dev/api/invoices', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
body: JSON.stringify({
items: [{
description: 'Premium Service',
quantity: 1,
unitPrice: 9900 // $99.00 in cents
}],
currency: 'USD',
customerEmail: '[email protected]',
customerName: 'John Doe',
dueDate: '2025-02-14'
})
});
const invoice = await response.json();
console.log('Invoice created:', invoice.id);
console.log('Payment link:', invoice.paymentLink);Set up your products and pricing plans - one-time payments, recurring, or usage-based.
Create TAIP-compliant blockchain payment requests that your customers can pay with any supported stablecoin.
Customers pay through Notabene Flow, and funds are settled directly to your blockchain wallet.
Monitor your revenue, manage customers, and track all payments through your merchant dashboard.