Skip to content

Autlantic BillingUSDC on Base

TypeScript SDK and hosted API for USDC subscriptions and one-time payments. Direct payouts to your EVM wallet, vault checkout, sandbox testing.

Two ways to integrate

ModeBest for
npm SDKNode backends, in-process sandbox, full control
Hosted HTTP APIAny stack (curl, mobile, PHP), API key only
bash
npm install @autlantic/payments-recurring@^0.2.7
ts
import { AutlanticBilling } from "@autlantic/payments-recurring";

const billing = AutlanticBilling.sandbox({ merchantId: "mer_demo" });

const { subscription, invoice } = await billing.createSubscription({
  merchantRef: "order_123",
  customerWallet: "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb0",
  payoutAddressEvm: "0xYourMerchantWallet…",
  amountUsdc: 20,
  interval: "month",
});

See Getting started for the full flow.

Autlantic Payments SDK