How to Accept USDC Payments as a Business

Published Sep 2, 2026 · 5 min read

What USDC is

USDC is a US-dollar-backed stablecoin issued by Circle. Every USDC in circulation is backed by cash and short-duration US Treasuries held by regulated custodians, and Circle publishes monthly attestations from a Big Four accounting firm. For a merchant, the practical translation is: USDC is a dollar that lives on a blockchain and doesn't move in price. One USDC in, one dollar out.

Why stablecoins for business

Non-stable crypto (SOL, ETH, BTC) works fine as a payment rail, but it introduces price risk between the moment a customer clicks pay and the moment you convert to fiat. For a $200 order, a 3% swing during a 30-second confirmation window is enough to make reconciliation annoying and margins unpredictable. Stablecoins remove that entirely.

Other reasons merchants pick USDC in particular:

If your customer base skews toward markets where USDT dominates, you'll want to offer both — see how to accept USDT payments for the parallel setup.

USDC on Solana

USDC on Solana settles in about one second at effectively zero network fee. Compared to USDC on Ethereum (~$1-$5 gas, 1-3 minute confirmation), the merchant experience is dramatically better for anything under a few thousand dollars.

If your customers hold USDC in Phantom, Backpack, or a Solana-supporting mobile wallet, they can pay by scanning a QR code and confirming once. Circle also runs its Cross-Chain Transfer Protocol, so customers can bridge in from Ethereum, Base, or Avalanche if they're not already on Solana — but for retail-sized payments, native-Solana holders are the majority of your addressable customers today.

Integrating via API

With Solpaygate, a USDC payment is one endpoint call. Send the amount and currency, get a token back, redirect the customer:

POST /api/company/{companyId}/payment-session
{
  "amount": 49.00,
  "currency": "USDC",
  "reference": "order_18271",
  "returnUrl": "https://yourstore.com/order/18271/thanks",
  "webhookUrl": "https://yourstore.com/hooks/solpay"
}

// response
{ "token": "eyJhbGci..." }

Redirect the customer's browser to https://app.solpaygate.com/pay?token=<token>. If you'd prefer to render your own checkout, use /payment-direct — it returns a raw Solana address you display in your own UI. For a fuller technical tour, see our Solana payment API walkthrough.

Reporting and reconciliation

Two things make reconciliation clean when you're accepting USDC through a non-custodial gateway:

Because settlement is non-custodial, funds sweep to your master wallet within seconds of confirmation. Your accounting system sees the same event from two sides — the webhook from Solpaygate, and the on-chain deposit into your master wallet — which makes reconciliation self-correcting. If one is missing, something is wrong and you know exactly where to look.

Ready to accept crypto payments?

Solpaygate lets your business accept SOL, USDT, and USDC on Solana with a single API call. Non-custodial, no smart contract to deploy.

Start for free