Quick start

Take your first stablecoin payment in five minutes.

Pick the door that matches your stack. Each path ends with USDC landing in your settlement wallet on the chain you chose.

Path 1

Shopify

A one-step install. No code, no DNS, no engineering ticket.

  1. Visit the BlockPay Shopify App listing.
  2. Click Install on your store.
  3. Paste your settlement wallet address.
  4. Accept USDC at checkout immediately. Funds settle to your wallet on the chain you chose.
Path 2

WordPress / WooCommerce

Drop our plugin into any WooCommerce store. Five clicks from zip-file to checkout.

  1. Download the plugin from /plugins/woocommerce.
  2. Upload it through WP admin Plugins → Add New → Upload Plugin.
  3. Configure your settlement address under WooCommerce → Settings → Payments → BlockPay.
  4. Save. You are done.
Path 3

Custom JS

A 12-line integration for any Node-backed app. Create an invoice, redirect to checkout, listen for the webhook.

checkout.ts@blockpay/checkout
import { BlockPay } from "@blockpay/checkout";
const bp = new BlockPay({ apiKey: process.env.BLOCKPAY_API_KEY! });
const invoice = await bp.invoices.create({
amount: "49.00",
currency: "USDC",
merchantAddress: "0xYourSettlementWallet",
lineItems: [{ label: "Pro Plan", amount: "49.00" }],
});
window.location.href = invoice.checkoutUrl;