Integration guide · 9 min read

Accept Crypto Payments on Your Website: the Non-Custodial Playbook

By Peptide-Pay Team · Published 23 kwietnia 2026

Flat-lay macro shot of a MacBook Pro showing a clean TypeScript code editor on the left, a Polygon blockchain explorer on the right with a recent USDC transfer highlighted, and a hardware wallet (Ledger) resting on a slate desk — the non-custodial crypto payment setup for a peptide merchant.

The "accept crypto payments on my website" search is dominated by three kinds of results: custodial processors who take 1.5–2% and hold your funds (BitPay, Coinbase Commerce), self-hosted open-source projects that require you to run a node (BTCPay Server), and aggregators that are hostile to restricted-category merchants (NowPayments, CoinPayments, who will quietly off-board peptide / nutra / SARMs accounts within weeks). None of those are built for a solo dev launching a peptide or research- compound shop in 2026 who needs card + crypto combined, non-custodial settlement, and no MCC 5122 bans. This guide walks through what "accept crypto payments" actually means in 2026, why non-custodial is the only sensible default for peptide shops, and how Peptide-Pay ships card + USDC checkout at 3% flat, no LLC, no rolling reserve, in under ten minutes of integration.

Three flavors of "accept crypto payments" in 2026

The first decision when adding crypto checkout to a website is not technical — it's who holds the money. Three patterns dominate:

  1. Custodial processors (BitPay, Coinbase Commerce, NowPayments): the processor receives the crypto into their wallet, converts to USD (or holds crypto), and later withdraws to your bank. Fees 1–2% + spread. You get a merchant dashboard, chargeback support, and 1099-K tax forms. You lose: self-custody, resistance to de-platforming (they can off-board you at will), and merchant-account-adjacent underwriting (some require KYB on new accounts).
  2. Self-hosted (BTCPay Server, LightningTipBot): you run a Bitcoin full node, your customer pays BTC or Lightning, you receive directly to a wallet you control. 0% fees but you carry the entire infra burden — node uptime, Lightning channel management, fiat off-ramp on your side. Only realistic for a tiny subset of crypto-native merchants.
  3. Non-custodial orchestrators (Peptide-Pay): the processor does not custody funds at any step. Your customer pays with a card or wallet; a licensed crypto on-ramp converts fiat to USDC; the USDC settles on-chain via a splitter contract that forwards the net amount to a wallet you personally control. The processor takes a flat fee from the splitter and never touches the principal. No merchant-account underwriting, no deplatforming risk on your funds.

For a peptide / nutra / SARMs shop in 2026, (1) will eventually off-board you because NowPayments and CoinPayments quietly classify peptides as high-risk regardless of what their signup form said. (2) is operationally infeasible for a solo dev. (3) — non-custodial orchestrator — is the only pattern that survives both your merchant vertical and the scaling of your order volume.

Why stablecoins (USDC) beat Bitcoin for ecommerce checkout

Ecommerce checkout has two hard requirements: price stability (the merchant's $50 invoice must still be $50 when it settles) and settlement finality within the order-fulfillment window (hours, not days). Bitcoin fails both. A BTC-denominated invoice that was $50 when the customer clicked "Pay" can be $48 by the time the transaction confirms, and BTC confirmation times run 10–60 minutes in typical conditions. Lightning fixes the speed problem but not the volatility one.

USDC is a dollar-pegged stablecoin backed 1:1 by US Treasuries and cash held by Circle Internet Financial. On Polygon (Matic's EVM chain) it settles in under 2 seconds at transaction fees of fractions of a cent. For a merchant, that means: $50 invoice → $50 USDC landing in your wallet 60 seconds after the buyer hits "Pay" → you ship the order the same hour. There is no price-exposure window and no 10-minute confirmation wait.

The trick: letting buyers pay with Apple Pay while you settle in USDC

The 2025–2026 advance that made crypto checkout viable for mainstream ecommerce was the emergence of hosted crypto on-ramps with embedded card acceptance: Moonpay, Transak, Revolut Ramp, Mercuryo, Banxa, and Binance Connect all let a buyer pay with Apple Pay / Google Pay / Visa / Mastercard / SEPA / Bancontact, convert that fiat to USDC, and ship the USDC to any Polygon address in one flow. The buyer never manages a wallet, never sees "seed phrase", never installs MetaMask. They tap Apple Pay, they get a confirmation email, done.

Peptide-Pay sits one layer above those on-ramps as a router. A single checkout session routes to the cheapest on-ramp per buyer geography + payment method, aggregates the quotes, settles to your wallet, and reports a single webhook event. From the buyer's perspective the flow is indistinguishable from any card checkout. From the merchant's perspective, USDC shows up in a wallet they personally own.

Node.js — accept crypto payments on any website in 10 linestypescript
// npm install github:kinerette/peptide-pay-sdk
import { PeptidePay } from 'peptide-pay';

const pp = new PeptidePay(process.env.PEPTIDEPAY_API_KEY!);

// Create a crypto-settled checkout that accepts cards + Apple Pay + USDC.
const session = await pp.checkout.sessions.create({
  amount_cents: 4999,                         // $49.99
  currency: 'USD',
  success_url: 'https://myshop.com/thanks',
  cancel_url:  'https://myshop.com/cart',
  webhook_url: 'https://myshop.com/api/pp-webhook',
  // Optional — route settlement to a specific wallet
  // wallet: '0x742d35Cc...'  // defaults to your account's primary wallet
});

// session.url is a hosted checkout the buyer lands on.
// When payment clears, USDC arrives on Polygon in ~60 seconds.

Peptide-Pay vs other ways to accept crypto

If you're comparing options, the five practical axes for a peptide or restricted-vertical merchant are: custody model, fee, ability to accept cards (not just crypto), peptide-vertical policy, and onboarding time.

ProcessorCustodyFeeAccepts cards?Accepts peptides?Onboarding
BitPayCustodial1% + spreadCard-to-BTC onlyNo — TOS bans1–2 weeks
Coinbase CommerceCustodial1% + spreadCard-to-crypto via on-rampNo — off-boards peptidesDays
NowPaymentsCustodial0.5–1%Card-to-crypto via on-rampQuiet off-board commonHours to days
BTCPay ServerNon-custodial0% + node costsNo — crypto onlyYes if you self-host1–4 weeks setup
Peptide-PayNon-custodial3% flatYes (Apple Pay, Visa, MC, SEPA)Yes — built for itSame-day, 15 min

Peptide-Pay's 3% is higher than BitPay's 1%, but the numbers aren't comparable: BitPay won't accept your peptide shop at all, and BTCPay won't let your buyers pay with Apple Pay. The question a peptide merchant is solving isn't "cheapest crypto fee" — it's "how do I ship a working checkout my buyers will actually convert on, without getting off-boarded, without custodial risk, without an LLC". The answer is 3% to a non-custodial orchestrator. For full fee math see /fees.

Why non-custodial matters specifically for peptide / restricted merchants

Custodial crypto processors carry the same deplatforming risk as Stripe: the moment their compliance team reviews your merchant descriptor and spots "peptide", your funds become their property until they decide to release them. BitPay, Coinbase Commerce, NowPayments, and CoinPayments all have public track records of freezing peptide-adjacent merchant balances. The freeze windows are 30–180 days.

Non-custodial removes that vector entirely. USDC settles directly from the on-ramp to a wallet whose private key you personally hold. If Peptide-Pay disappears tomorrow, every dollar already in your wallet is still yours. If the on-ramp de-lists us, we add the next one (six are in rotation). Your funds are never in the path of a compliance team that could freeze them.

Three integration paths for accepting crypto on your site

  1. Payment link (zero code): sign up, generate a link, paste into any <a href="…">. Works on Squarespace, Wix, Webflow, Framer, Lovable-generated sites, v0 sites, Bolt sites, Cursor-generated sites — any platform that renders an anchor tag. 60 seconds.
  2. WooCommerce plugin: download the zip, upload under Plugins → Add New → Upload, paste API key + wallet. 3 minutes. Your WooCommerce checkout now has a "Pay with card or crypto" option.
  3. API / SDK: npm install github:kinerette/peptide-pay-sdk, call pp.checkout.sessions.create(...), redirect the buyer to the returned URL. Stripe-compatible SDK shape so any LLM pair programmer writes correct code on the first try. See Integrate and Docs.

Summary

"Accept crypto payments" in 2026 should not mean asking your buyers to install MetaMask. It means a hosted checkout that accepts Apple Pay + card + SEPA + USDC, converts everything to USDC automatically, and settles into a wallet you control — non-custodially. For peptide, nutra, SARMs, and other restricted verticals, non-custodial is the only architecture that doesn't eventually freeze your funds. Peptide-Pay delivers exactly that at 3% flat, no LLC required, no rolling reserve, same-day go-live. Read more: Payment Processor for Peptides, Stripe Alternative for Peptides, and How it Works.

FAQ

Developer questions, straight answers.

What does non-custodial mean for crypto payments?
Non-custodial means the payment processor never takes possession of the money. In a custodial model (BitPay, Coinbase Commerce, NowPayments), the customer sends crypto to the processor, the processor holds it, and the processor later pays out to you — so the processor can freeze, delay, or off-board you. In a non-custodial model (Peptide-Pay), the customer’s fiat becomes USDC at a licensed on-ramp, and the USDC settles directly from the on-ramp to a wallet whose private key you personally hold. The processor never has authority to freeze funds because it never had them.
Do I need to know anything about crypto to accept crypto payments?
Only two things: (1) you need a Polygon-compatible USDC wallet address — MetaMask, Rabby, Ledger, or a Binance / Coinbase deposit address all work — and (2) you need to safeguard its seed phrase like you would a bank password. Peptide-Pay handles everything else: choosing the on-ramp, pricing the invoice, getting the USDC from buyer to your wallet, firing webhooks when settlement clears. Your customers don’t need to know anything about crypto either — they pay with Apple Pay / Visa / SEPA and never see the word "wallet".
Can I accept crypto payments without KYC?
On the merchant side, yes — Peptide-Pay does not run KYC on the merchant. You connect a wallet, paste an API key, and ship. On the buyer side, the on-ramp providers run their own KYC (FinCEN, FCA, or EU-level requirements, depending on the on-ramp). That KYC is transparent to you — the buyer goes through it directly with the on-ramp, not with you or with Peptide-Pay.
What happens if USDC de-pegs or Circle collapses?
USDC’s dollar peg is backed by US Treasuries and cash reserves held by Circle. A brief de-peg happened in March 2023 (SVB exposure) and recovered within 48 hours. In a catastrophic Circle failure scenario, merchants with USDC balances would be creditors to Circle’s reserves — same situation as holding a balance at any non-FDIC-insured financial institution. The practical mitigation is: don’t hold USDC balances. Sweep your wallet weekly to fiat via any off-ramp (Kraken, Coinbase, Revolut). Peptide-Pay deliberately settles in USDC rather than a smaller stablecoin because USDC has the deepest fiat off-ramp liquidity.
How is accepting crypto different from accepting cards via Stripe?
Two material differences. First, settlement finality: crypto is final in under 60 seconds; card settlements are reversible for 6 months via chargebacks. Second, merchant-of-record responsibility: with Stripe, Stripe is the merchant of record and handles the card-network relationship, tax reporting 1099-K, and refund UX; with a non-custodial crypto orchestrator you are the merchant of record for tax and refund UX (Peptide-Pay provides the technology layer, not the merchant-of-record services). For peptide shops the crypto-native path is usually the only one available, because Stripe bans the category outright.
Keep reading

Related guides

Ready to integrate Peptide-Pay?

Paste your Polygon wallet, drop in the SDK, done. No LLC required, no rolling reserve, same-day go-live — 3% flat.