Demo Platform

Blockchain Billing Made Simple

Experience the future of payments with Flow PSP - a Stripe-like billing platform that enables merchants to accept stablecoin payments through Notabene's compliant blockchain infrastructure.

Everything You Need for Blockchain Payments

Global Payments

Accept payments in any fiat currency, settled instantly via stablecoins on the blockchain.

Built on TAP

Built on the open Transaction Authorization Protocol for standardized blockchain payments.

Instant Settlement

No more waiting days for funds. Blockchain settlements happen in minutes, not days.

Subscriptions

Automated recurring billing with TAIP-15 authorized connections for seamless payments.

Usage-Based Billing

Track usage and bill customers based on consumption with flexible metered pricing.

Simple Integration

Familiar Stripe-like APIs make integration easy for developers already using payment platforms.

Try It Live

See how easy it is to integrate blockchain payments into your application. These examples use the demo merchant account credentials.

Create an Invoice

Generate a one-time payment request for your customer

// Create a one-time invoice
const response = await fetch('https://demo.flowpsp.com/api/invoices', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer YOUR_API_KEY'
  },
  body: JSON.stringify({
    items: [{
      description: 'Premium Subscription',
      quantity: 1,
      unitPrice: 9900 // $99.00 in cents
    }],
    currency: 'USD',
    customerEmail: 'customer@example.com',
    customerName: 'John Doe'
  })
});

const invoice = await response.json();
console.log('Invoice created:', invoice.id);
console.log('Payment link:', invoice.notabeneLink);

Create a Subscription

Set up recurring billing with automated payment collection

// Create a recurring subscription
const response = await fetch('https://demo.flowpsp.com/api/subscriptions', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer YOUR_API_KEY'
  },
  body: JSON.stringify({
    priceId: 'price_pro_monthly', // Monthly plan price ID
    customerEmail: 'customer@example.com',
    customerDid: 'did:example:customer123'
  })
});

const subscription = await response.json();
console.log('Subscription created:', subscription.id);
console.log('Next billing date:', subscription.nextBillingDate);

Want to see more? Check out our full API documentation.

How It Works

1

Create Your Products

Set up your products and pricing plans - one-time payments, subscriptions, or usage-based.

2

Generate Payment Requests

Create TAIP-compliant blockchain payment requests that your customers can pay with any supported stablecoin.

3

Receive Instant Payments

Customers pay through Notabene Flow, and funds are settled directly to your blockchain wallet.

4

Track Everything

Monitor your revenue, manage subscriptions, and track all payments through your merchant dashboard.

Try the Demo

This is a demo platform showcasing blockchain billing capabilities. Use the test credentials below or create your own account.

Demo Accounts:

Merchant Account:demo@acmecorp.com / demo123
Admin Account:admin@flowpsp.demo / admin123

Ready to Accept Blockchain Payments?

Join the future of payments with instant settlement, global reach, and complete transparency.