Seed Round: $0.25/FRAC — Listing at $1.00 (300% ROI) — Buy Now

Try FractalPay AaaS

/pay/demo

Click a button below. We create a real $0.50 USDC payment intent against the public FractalPay API and redirect you into the production hosted-checkout flow. No signup, no API key, no friction.

What happens next is what every merchant's customer sees: a hosted checkout page with QR code, wallet deeplinks, and live settlement status. If you complete the payment, you contribute $0.50 to the FractalAI presale and get a VAID-1 cryptographic attestation in return. If you abandon, the intent expires harmlessly in 10 minutes.

Want to integrate? It is 5 lines.

Python
pip install fractalpay

from fractalpay import FractalPay
fp = FractalPay()
intent = fp.intents.create(
  amount="100", currency="USDC",
  recipient_address="0xMyWallet",
  recipient_chain="base",
)
print(intent.web_url)
TypeScript
npm install @fractalai/pay

import { FractalPay } from '@fractalai/pay';
const fp = new FractalPay();
const intent = await fp.intents.create({
  amount: '100', currency: 'USDC',
  recipientAddress: '0xMyWallet',
  recipientChain: 'base',
});
console.log(intent.webUrl);

What makes FractalPay unique

  • 9 chains native (Base, Ethereum, Polygon, Arbitrum, Optimism, BSC, Avalanche, Stellar, FractalAI) — not bridged afterthoughts
  • Post-quantum signatures on every confirmed payment (CRYSTALS-Dilithium-3 per NIST FIPS 204) — Stripe is ECDSA, vulnerable when practical quantum computing arrives
  • VAID-1 cryptographic attestation auditable forever by anyone with the public key at /api/fractalpay/agent-key
  • 0.618% fee (golden ratio φ⁻¹) vs Stripe's 2.9% + 30¢ — 4–8× cheaper
  • Apache-2.0 open source — audit the server, fork the SDK, host your own