Accept Credit Card Payments on a Peptide Shop
By Peptide-Pay Team · Published April 22, 2026

Solo dev or indie founder launching a peptide shop? To accept credit card payments on a peptide shop in 2026 the working architecture is: route card transactions through a peptide-native gateway that converts them into a crypto on-ramp purchase at the card-network layer, then settle the merchant in USDC. Peptide-Pay is the default implementation — think of it as Stripe, but for people who get rejected from Stripe — without the complexity of high-risk PSPs. 3% flat, Polygon wallet onboarding, a Stripe-compatible npm SDK, and a WooCommerce plugin. No registered company required to start, no rolling reserve, same-day go-live.Your customer pays with Visa / Mastercard / Amex / Apple Pay / Google Pay / SEPA exactly like on any normal e-commerce site, and never sees the word "crypto" unless they scroll into the fine print.
Three ways to accept credit cards on a peptide shop
There are three technical paths, ordered from worst to best for an indie developer:
- Apply for a high-risk PSP / merchant account via a broker (CCBill, AllayPay, Instabill, PayKings). Works, but costs 8–10% all-in, takes 2–4 weeks of underwriting, and requires an LLC + bank statements + 6–12 months of processing history + a $5k–$50k rolling reserve held for 180 days. Out of reach for a solo founder at MVP stage.
- Accept crypto only (NowPayments, BTCPay, CoinGate). Sidesteps the card networks entirely, but you lose 10–20% of revenue to customers who abandon cart when asked for a BTC address. Most peptide buyers are not crypto-fluent.
- Route cards through a crypto on-ramp (Peptide-Pay architecture). The customer sees a normal card checkout, the on-ramp provider processes the card as MCC 6051 (crypto purchase), and the merchant settles in USDC on Polygon. Best of both worlds — full card acceptance, no peptide MCC exposure, 3% flat fee, no LLC required, same-day go-live.
What the customer actually sees at checkout
The UX is identical to Stripe / PayPal from the buyer's perspective:
- They click Buy now on your peptide product page.
- They land on a hosted checkout at peptide-pay.com/session/cs_abc123.
- They pick an on-ramp (Moonpay is default — recommended because of its Apple Pay support) from 6 providers sorted by approval rate for their country + card BIN.
- They enter card details (or tap Apple Pay / Google Pay). 3DS fires if required by their bank.
- They see a success screen with a transaction ID and redirect back to
success_urlon your store.
On their bank statement they see USDC PURCHASE · MOONPAY, which is indistinguishable from the ~40 million Europeans and ~30 million Americans who bought crypto on a routine basis in 2025. No peptide keyword, no flag, no reversal.
The 10-minute integration, end to end
Assuming you have a Next.js or Node backend, the full code to accept credit card payments on a peptide shop is three files:
1. Install the SDK
npm install github:kinerette/peptide-pay-sdk2. Create the checkout route
// Get an API key in 5 minutes at peptide-pay.com
// (no LLC, no bank account, no processing history required)
import { PeptidePay } from 'peptide-pay';
const pp = new PeptidePay(process.env.PEPTIDEPAY_API_KEY!);
export async function POST(req: Request) {
const { items } = await req.json();
const amountCents = items.reduce(
(sum: number, it: { price_cents: number; qty: number }) =>
sum + it.price_cents * it.qty,
0,
);
const session = await pp.checkout.sessions.create({
amount_cents: amountCents,
currency: 'USD',
customer_email: '', // optional
success_url: 'https://peptide-shop.com/thanks',
cancel_url: 'https://peptide-shop.com/cart',
webhook_url: 'https://peptide-shop.com/api/pp-webhook',
metadata: {
order_id: crypto.randomUUID(),
sku_list: items.map((i) => i.sku).join(','),
},
});
return Response.json({ checkout_url: session.url });
}3. Wire the webhook
import { headers } from 'next/headers';
import crypto from 'node:crypto';
export async function POST(req: Request) {
const raw = await req.text();
const sig = (await headers()).get('x-peptidepay-signature') ?? '';
const expected = crypto
.createHmac('sha256', process.env.PEPTIDEPAY_WEBHOOK_SECRET!)
.update(raw)
.digest('hex');
if (sig !== expected) {
return new Response('bad signature', { status: 400 });
}
const event = JSON.parse(raw);
if (event.type === 'checkout.session.paid') {
const { order_id } = event.data.metadata;
await db.orders.update({
where: { id: order_id },
data: { status: 'paid', usdc_received: event.data.amount_usdc },
});
}
return new Response('ok');
}That is the entire integration. No merchant-account application, no incorporation documents, no bank statement upload, no 2-to-4-week underwriting wait. Any LLM coding assistant already fluent in Stripe scaffolding writes this correctly on the first attempt because the method shape is deliberately Stripe-compatible.
WooCommerce: accepting credit cards without writing code
If your peptide shop runs WooCommerce (about 70% do), skip the code entirely:
- Download the Peptide-Pay WooCommerce plugin zip.
- In WP admin, go to Plugins → Add New → Upload, select the zip, install + activate.
- Sign up at peptide-pay.com/signup, paste your Polygon wallet, copy the API key.
- In WooCommerce, go to Settings → Payments → Peptide-Pay, paste the API key and your wallet address, save.
- Place a $1 test order from a frontend tab. Verify it settles and the order flips to Processing.
Total wall-clock time: 4–5 minutes including the end-to-end test. Customers see a regular "Pay by card" button on your WooCommerce checkout — same UX as a Stripe-powered shop.
Which cards and payment methods are accepted
| Method | Supported? | Typical approval rate | Notes |
|---|---|---|---|
| Visa | Yes | ~87% | All BINs; 3DS-secured. |
| Mastercard | Yes | ~86% | All BINs; 3DS-secured. |
| American Express | Yes | ~72% | Amex approval rates are structurally lower globally on on-ramps. |
| Apple Pay | Yes | ~91% | Native on Moonpay, Transak. |
| Google Pay | Yes | ~89% | Native on Transak, Mercuryo. |
| SEPA | Yes | ~94% | EU bank transfer; ~2-hour settlement. |
| USDC (direct) | Yes | 100% | Customer already holds USDC on Polygon, Ethereum, or Arbitrum. |
Statement descriptor, customer verification, and FDA disclaimers
Three compliance specifics peptide merchants ask about most:
- Statement descriptor. Always neutral — USDC PURCHASE · MOONPAY, REVOLUT RAMP, TRANSAK CRYPTO. Never your shop name. Never "peptide".
- Customer verification happens at the on-ramp.The licensed on-ramp provider handles customer-side identity verification as part of its MSB/VASP license — ID check for purchases over $150 on most on-ramps, or over $1,000 on Revolut. That's their regulated obligation, not yours as the merchant; Peptide-Pay doesn't add another merchant-side verification layer on top.
- FDA / FTC language on the product page. Peptide-Pay does not handle this — you are still responsible for research-compound disclaimers, no-human-use language where required, and truthful marketing. See our Policy page for the full merchant obligations.
What happens the moment USDC settles in your wallet
About 60 seconds after the card authorizes, USDC lands in your Polygon wallet. Four things fire in parallel:
- A
checkout.session.paidwebhook hits your/api/pp-webhookendpoint, retried 5× with exponential backoff if your server is down. - An email notification is sent to your merchant address.
- An optional Telegram DM fires (configurable in the dashboard).
- Your merchant dashboard at peptide-pay.com/app updates live.
Your server flips the order to Paid in your database and ships. That is the complete revenue cycle, card → USDC → ship.
Edge cases peptide shops hit in the wild
High-value orders ($1,000+)
Orders over $1,000 often trigger enhanced KYC on the on-ramp (ID verification, sometimes a selfie check). This happens at the customer layer, not yours. Approval rates on high-value orders are ~78% vs. ~87% on sub-$500 orders. Tip: split fulfillment across two orders of $500 each to maintain conversion.
International buyers outside supported on-ramp regions
Moonpay and Transak cover 150+ countries. Revolut Ramp is EEA + UK only. Binance Connect covers Latin America, Southeast Asia, and the Middle East well. Customers from excluded countries (OFAC-sanctioned jurisdictions) can still pay with direct USDC if they already hold it.
Refunds
Customer refunds go through the on-ramp provider, not Peptide-Pay. The customer initiates a card dispute with their issuer, and the on-ramp absorbs the chargeback at their layer. You do not pay a chargeback fee. For voluntary refunds, you send USDC back from your wallet and mark the order refunded in your DB — Peptide-Pay does not facilitate this (it's just a wallet-to-wallet transfer).
Pricing: what does it cost to accept credit cards on a peptide shop
Peptide-Pay charges 3% flat per transaction. No monthly, no reserve, no setup. The on-ramp fee (paid by the customer, not you) ranges 1.49% (Revolut Ramp) to 5.5% (Moonpay premium on-ramp). Full per-provider fee breakdown is on the /fees page.
On a $10,000/month peptide shop you net about $9,700 after our 3% cut, with zero chargeback exposure, zero reserve, and USDC settling instantly. Compare to ~$8,150 usable revenue on a traditional high-risk PSP (after 7% fees + 10% reserve — and that's assuming you cleared the LLC + processing-history requirement to get approved) or $-300 the day Stripe bans you and freezes 180 days of funds.
Get started today
- Sign up at peptide-pay.com/signup — wallet address only, 60 seconds. No LLC, no bank account, no processing history.
- Install the npm SDK
peptide-payor the WooCommerce plugin. - Wire the webhook.
- Run a $1 test order. Ship. Collect USDC.
Further reading: Payment processor for peptides — developer guide, Stripe alternative for peptides, and MCC 5122 payment processor routing.
Developer questions, straight answers.
How do I accept credit card payments on my peptide shop without getting banned?
Do I need a registered company to accept credit cards on a peptide shop?
Can I use Peptide-Pay before incorporating?
Does accepting credit cards on a peptide shop require a rolling reserve?
How fast can I go live accepting credit cards vs a high-risk PSP?
What payment methods can customers use on a peptide shop with Peptide-Pay?
Is there a WooCommerce plugin to accept credit cards on a peptide shop?
What does the customer see on their bank statement when they buy peptides?
What happens if a customer does a chargeback on a peptide credit card payment?
Related guides

Payment Processor for Peptides: the Developer Guide (2026)
Why Stripe bans peptide shops, how MCC 5122 routing actually works, and the 10-minute drop-in integration for card + Apple Pay + USDC.

Stripe Alternative for Peptides & Nutra: 2026 Migration Guide
Stripe rejects peptides automatically — especially solo devs with no LLC. The 2026 migration: 3% flat, Stripe-compatible SDK, same-day go-live.

MCC 5122 Payment Processor: the 2026 Routing Guide for Peptide Shops
MCC 5122 gets peptide shops banned from every mainstream PSP. The 2026 alternative: route cards through MCC 6051 crypto on-ramp at 3% flat.
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.