Back to Guides
Payment Gateway vs Payment Processor: Differences, Examples, and When It Matters
"Payment gateway" and "payment processor" are used interchangeably in marketing copy. They are not interchangeable in contracts or in engineering. One is the checkout's security officer. The other is the plumbing that moves funds between banks.
This guide explains what each does, how they interact with acquirers and merchant accounts, why modern all-in-one providers blur the line, and how crypto payment gateways collapse the entire stack into a single component. With concrete examples, a full fee breakdown, and a decision framework at the end.
Boost Your Business by Accepting Crypto Payments
The Short Answer
A payment gateway captures the buyer's payment data at checkout, encrypts and tokenizes it, and sends an authorization request on to the rest of the stack. A payment processor takes that request, routes it through the card networks, talks to the issuing bank, and moves settled funds to the merchant's account.
Payment gateway
Front-end software. Lives on the merchant's checkout. Secures and transmits payment data. Thinks in milliseconds. PCI-scoped.
Payment processor
Back-end service. Connected to acquirers and card networks. Authorizes, clears, settles. Thinks in seconds to days. Regulated as a money transmitter.
Many modern providers bundle both roles into a single product. Crypto payment gateways go further and collapse the gateway, the processor, and the merchant account into one system on top of a blockchain.
What a Payment Gateway Actually Does
The gateway is the front-door of the payment stack. Its job is to get sensitive payment data off the merchant's servers as fast as possible and into a form that is safe to transmit.
- Data capture. Hosted fields, drop-in SDK, or redirect to a hosted checkout page. Collects PAN, expiry, CVV, plus optional shipping and 3DS data.
- Encryption. TLS 1.2 or 1.3 on every request. Card data never crosses the merchant's network in the clear.
- Tokenization. The PAN is replaced with a gateway token (for future charges) or a network token (Visa Token Service, Mastercard MDES). The token is useless outside the gateway.
- 3D Secure orchestration. For PSD2 SCA in Europe and high-risk transactions elsewhere, the gateway invokes 3DS2, hands the buyer to the issuer's authentication flow, and returns with a liability-shifted authentication result.
- Fraud signals. Device fingerprint, velocity, BIN country, AVS match, CVV match. The gateway packages these into a risk score or sends them to the processor for decisioning.
- Response routing. Returns approved, declined, or challenged to the merchant's checkout, fires a webhook, and writes a record for reconciliation.
In crypto, the gateway does the same four jobs but talks to a blockchain: it generates a unique deposit address or payment URI, watches the mempool for the buyer's transaction, waits for the configured number of block confirmations, and fires a webhook when the payment is final.
What a Payment Processor Actually Does
The processor is the plumbing. It does the work of moving a signed authorization request through a web of banks and networks and getting funds into the merchant's account.
- Authorization routing. Receives the auth request from the gateway and sends it to the acquiring bank, which routes it over a card network (Visa, Mastercard, Amex, Discover, UnionPay) to the issuing bank.
- ISO-8583 messaging. Card-scheme messages are formatted per the ISO-8583 standard. The processor speaks this language natively so the gateway and the merchant do not have to.
- Decline code handling. 05 "Do not honor", 51 "Insufficient funds", 65 "Exceeds withdrawal limit" - the processor interprets and normalizes these into merchant-friendly responses.
- Clearing. At the end of each day, the processor batches authorized transactions and sends a clearing file to the card network, which moves money from issuer to acquirer.
- Settlement. The acquirer credits the merchant account on T+1 or T+2 (longer for cross-border and high-risk), minus interchange, scheme fees, and processor markup.
- Chargeback and dispute handling. Receives dispute notices, debits the merchant account, facilitates representment, and accepts or rejects the issuer's decision.
Side-by-Side: Gateway vs Processor vs Acquirer vs Merchant Account
| Role | What it does | Where it lives | Regulated as |
|---|---|---|---|
| Payment gateway | Captures, encrypts, tokenizes, routes auth requests | Merchant's checkout or hosted page | PCI DSS (technical standard) |
| Payment processor | Moves auth/clearing/settlement between acquirer and issuer | Back-end service, connected to card networks | Money transmitter or bank partner |
| Acquirer | Holds the merchant account; licensed by card networks | Bank | Card-network member, full bank |
| Merchant account | Receives cleared funds before sweep to operating bank | At the acquirer | Bank deposit account |
| Card network | Routes messages between issuer and acquirer; sets interchange | Global switching network | Private scheme |
| Issuing bank | Holds the cardholder's funds; approves or declines | Buyer's bank | Full bank |
For a crypto payment gateway the last five rows collapse into one. The gateway captures the invoice, the blockchain authorizes and clears, and settlement happens on-chain. If you want fiat, a single banking partner handles the off-ramp.
Worked Example: a $100 E-commerce Card Sale
To make the roles concrete, walk through a $100 purchase on a US e-commerce site:
- Buyer submits the form. The gateway receives the card data over TLS, tokenizes the PAN, packages an auth request.
- Gateway sends the request to the processor. Processor forwards it through the acquirer, over the Visa network, to the issuing bank.
- Issuer checks available credit, fraud models, AVS, CVV. Returns
approvedwith auth codeX3K9P2in 1.2 seconds. - Processor returns
approvedto the gateway. Gateway fires a webhook and shows the buyer a thank-you page. - At 23:00 that night, the processor batches the day's auths and sends a clearing file to Visa. Visa moves $100 less interchange from the issuer to the acquirer.
- On T+1, the acquirer credits the merchant account with $96.80 ($100 - 2.9% - $0.30).
- On T+2, the merchant's bank sweeps the balance to the operating account.
- 60 days later, the buyer disputes. Issuer files a chargeback. The processor debits the merchant account $100, charges a $25 chargeback fee, and waits for representment.
Four different systems, five different contracts, two settlement dates, and a five-month tail of dispute risk. That is a card transaction.
Worked Example: a $100 Crypto Sale
Same order, paid in USDC on Ethereum L2:
- Merchant's server calls the crypto gateway's API with
amount=100, currency=USD. - Gateway locks the rate, generates a unique deposit address, returns a QR code and a 20-minute invoice.
- Buyer scans with MetaMask, signs, broadcasts. Gateway's indexer picks up the transaction from the mempool in under a second.
- After 1 to 2 confirmations on the L2 (typically 4-10 seconds), the gateway fires a
payment.completedwebhook. - Merchant either keeps $100 USDC in a self-custodial wallet (T+0, zero fees beyond 0.5% gateway commission), or off-ramps to a bank account on T+0 to T+1 with a 1% spread.
- Merchant nets $98.50 to $99.50. No chargeback window. Ever.
Same commercial outcome, one system, one contract, zero dispute tail. This is why crypto gateways are compelling for any merchant whose margins cannot sustain 3% card fees and a 0.9% chargeback ratio.
Fee Layers: Who Charges What
Understanding the fee stack is the fastest way to understand why gateways and processors are separate.
| Fee | Who charges it | Typical US e-commerce rate |
|---|---|---|
| Interchange | Issuing bank (set by Visa/Mastercard) | 1.50 to 2.10% + $0.10 |
| Scheme fees | Visa, Mastercard | 0.10 to 0.15% |
| Processor markup | Payment processor | 0.30 to 1.00% |
| Gateway fee | Payment gateway | $0.05 to $0.20 per tx, or bundled |
| Chargeback fee | Processor / acquirer | $15 to $100 per dispute |
| Cross-border markup | Processor | +0.80 to 1.50% |
Blended, a US merchant typically pays 2.9% + $0.30 per transaction. In the EU the number is closer to 1.4% thanks to interchange caps. For crypto, the processor layer and the acquirer layer do not exist: there is only a gateway fee (0.4 to 1%) and an optional off-ramp spread (0.5 to 1.5%).
When the Distinction Matters
For most e-commerce operators, the gateway-vs-processor split is invisible. You buy a bundled product, one contract, one rate. The distinction starts to matter when:
- You are unbundling. Moving from a bundled PSP (like a flat 2.9% product) to Interchange++ pricing exposes each fee layer separately. Understanding who charges what is the only way to benchmark quotes.
- You are building a payment orchestration layer. Routing transactions across multiple processors requires a gateway-agnostic architecture. You pick a gateway that speaks to many processors.
- You are a high-risk vertical. Getting approved is an acquirer problem, not a gateway problem. The gateway does not care what you sell; the acquirer does.
- You are expanding internationally. Local acquiring (an acquirer in each country where you have significant volume) drops decline rates by 5 to 12%. The gateway routes; the processor and acquirer actually make it work.
- You are adding crypto. Crypto gateways replace the entire processor and acquirer stack. Evaluating them requires knowing what they are replacing.
If none of those apply, pick a bundled provider with fair pricing and move on. If any do, the vocabulary here is the minimum you need to negotiate effectively.
Boost Your Business by Accepting Crypto Payments
Get Started
Frequently Asked Questions
No. The gateway is the front-end software that captures and encrypts payment data at checkout. The processor is the back-end service that moves the transaction between banks. Many providers bundle both into one product, which is why the terms get confused.
For card payments, yes. Every card transaction requires a gateway to capture data and a processor to settle funds. Most merchants buy them as a bundled service from one provider. For crypto, one gateway does both jobs.
The merchant account is a specialized bank account held at an acquirer; it is where cleared card funds land before being swept to your operating account. The gateway is the software in front of everything. You can have a gateway without a merchant account (as with crypto) but not the other way around for cards.
Both, plus a payment method. PayPal runs its own processing, funds flow through its ledger, and it exposes a gateway-style checkout. Technically it is a payment service provider (PSP) that bundles all three roles.
A PSP is a single vendor that bundles the gateway, processor, and acquiring into one contract. You see one rate, one dashboard, one integration. Behind the scenes the same layers exist; the PSP just abstracts them.
An aggregator (also called a payment facilitator or PayFac) is a special type of PSP that lets merchants accept card payments under the aggregator's own merchant account instead of each merchant needing their own. It eliminates merchant account approval for small businesses, at the cost of higher fees.
No. A blockchain is the processor. The gateway watches the chain for confirmations and settles to a wallet. An off-ramp partner is only needed if the merchant wants fiat in a bank account.
Processor fees (interchange plus scheme plus markup) are typically 80 to 90% of the total cost of a card transaction. The gateway fee is usually the smallest line item. That is why cutting the gateway alone rarely moves the blended rate materially.
Sometimes. If you use a gateway that is independent of the processor (so-called gateway-agnostic), you can switch one without touching the other. If your gateway and processor are bundled from one vendor, you switch both together.
Because the blockchain replaces the card network, the processor, the acquirer, and the merchant account in one. The gateway is the only traditional component left, and even it is simpler (no PCI, no 3DS, no chargebacks). That is why crypto payments typically cost 2 to 5 percentage points less and settle faster.