All termsCheckoutUpdated April 10, 2026

What Is One-Click Payments?

One-click payments let returning customers complete a purchase with a single tap or click, using stored payment credentials — no re-entering card details required. They reduce checkout friction and dramatically increase conversion rates for repeat buyers.

Also known as: 1-click checkout, express pay, single-click checkout, instant checkout

Key Takeaways

  • One-click payments use stored, tokenized credentials to let returning customers pay without re-entering card details.
  • They typically rely on a card-on-file set up during a prior authenticated transaction, satisfying SCA upfront.
  • Mobile shoppers benefit most — typing card details on a small screen is a leading cause of cart abandonment.
  • Proper implementation requires tokenization, SCA exemption logic, and fraud monitoring to stay secure and compliant.
  • Payment orchestration platforms can enable one-click payments across multiple PSPs from a single integration.

One-click payments are one of the highest-leverage optimizations available to any ecommerce merchant. By removing the need to re-enter payment information at checkout, they turn the repeat purchase journey from a multi-step form into a single, frictionless action. For merchants with a meaningful base of returning customers, enabling one-click checkout is often the fastest path to a measurable conversion rate improvement.

How One-Click Payments Works

One-click payments are not magic — they are the result of securely storing payment credentials during a prior transaction and retrieving them at the right moment. Here is the end-to-end flow:

01

Customer completes first purchase

During the initial checkout, the customer enters their card details and authenticates — typically satisfying Strong Customer Authentication (SCA) via 3DS2 or a wallet flow. This is the moment credentials are captured.

02

Card data is tokenized and stored

The payment processor replaces the raw card number with a secure token via tokenization. The token is stored against the customer's account, either by the merchant platform or the payment provider. No raw PAN is ever stored by the merchant.

03

Customer returns to the site

On a repeat visit, the customer is recognized via their logged-in session. Their stored payment method is surfaced at checkout — often pre-selected — with a single "Buy now" or "Pay" button.

04

Single click triggers the charge

The customer clicks once. The merchant sends the stored token to the payment processor with a merchant-initiated or SCA-exempt flag. The processor charges the card and returns an authorization response — typically in under two seconds.

05

Confirmation is shown instantly

Because no redirect to a 3DS challenge page is required, the customer sees an order confirmation almost immediately. The frictionless checkout experience is complete.

Why One-Click Payments Matters

Checkout abandonment is one of the most expensive problems in ecommerce, and payment friction is a primary driver. The data is clear on how much one-click payments can move the needle.

The Baymard Institute estimates the average documented cart abandonment rate across ecommerce sites sits at approximately 70%, with "too long or complicated checkout process" cited by 22% of US adults as a reason they abandoned an order in the past quarter. Reducing checkout steps directly addresses this. Amazon — which pioneered the concept and held the original 1-Click patent from 1999 to 2017 — built a significant portion of its repeat-purchase dominance on this single UX mechanic.

Mobile is where one-click payments deliver the largest gains. According to Statista, mobile devices accounted for over 60% of global ecommerce traffic as of recent years, yet mobile conversion rates consistently lag desktop by 30–50%. The primary culprit is form entry: typing a 16-digit card number, expiry, and CVV on a touchscreen keyboard is a high-abandonment moment. One-click payments eliminate this entirely for returning customers, which is why mobile conversion rate uplift from one-click checkout is often 2–3× higher than on desktop.

A study published by the Journal of Marketing Research found that reducing the number of steps in a checkout flow had a non-linear effect on completion — each additional step removed from a short flow produced a larger proportional gain than removing steps from a long flow. One-click payments represent the theoretical minimum: one step.

SCA and one-click payments in Europe

Under PSD2, European one-click transactions typically rely on the SCA performed during the first checkout, then qualify for the "merchant-initiated transaction" or "low-value" exemption on subsequent purchases. Work with your payment provider to ensure exemption logic is correctly configured — misconfigured SCA can cause unnecessary declines that negate the UX benefit.

One-Click Payments vs. Guest Checkout

One-click payments and guest checkout solve opposite problems. The table below clarifies when each is relevant.

DimensionOne-Click PaymentsGuest Checkout
Target customerReturning, logged-inFirst-time or anonymous
Authentication requiredLogin to accountNone
Card entry requiredNo — uses stored tokenYes — full entry
SCA handlingExempt or MIT on repeatFull SCA on first purchase
Conversion impactHigh for returning customersHigh for new customers
Data storedTokenized card + customer profileNothing (unless opted in)
Setup complexityHigher — requires token storageLower — standard form
Best use caseSubscription, reorder, loyaltyImpulse buy, anonymous traffic

The smartest checkout flows combine both: guest checkout to minimize friction for new visitors, and one-click for logged-in returning customers. Neither approach replaces the other.

Types of One-Click Payments

One-click payment implementations vary by where credentials are stored and who controls the authentication layer.

Platform-native one-click — The merchant stores card-on-file credentials via their payment processor. Examples include Stripe's saved payment methods or Adyen's recurring tokens. The merchant controls the UX entirely.

Network-level credentials (Click to Pay) — Card networks (Visa, Mastercard, Amex) operate a shared credential vault called Click to Pay. Customers authenticate once across participating merchants; their saved card is available everywhere in the network without re-entering details.

Wallet-based express checkout — Apple Pay, Google Pay, and PayPal's one-touch all function as one-click payment methods for enrolled users. Authentication is handled at the device or wallet level, reducing the merchant's SCA burden.

In-app payments — Mobile apps (rideshare, food delivery, gaming) store payment credentials at the app level. The "one tap to pay" mechanic in apps like Uber or DoorDash is one-click payment optimized for app UX patterns.

Orchestration-layer tokens — Payment orchestration platforms store a network token that can be routed to multiple processors. This enables one-click payments even when the underlying PSP changes — critical for merchants who switch processors or route by region.

Best Practices

One-click payments require careful implementation to maximize conversion without increasing fraud or compliance risk.

For Merchants

  • Gate it behind login, not a cookie. One-click payments should only surface for authenticated sessions. Cookie-based "remember me" flows are vulnerable to session hijacking and create liability.
  • Always show the stored card. Display the last four digits, card brand, and expiry before the pay button. Customers need to confirm which card will be charged — hidden details erode trust.
  • Provide an easy escape. Always include a "Use a different card" link. Forcing one-click when the stored card has expired or been cancelled creates a dead end.
  • Monitor for abnormal reorder velocity. Fraud rings exploit one-click flows by targeting accounts with stored cards. Set velocity rules on one-click transactions separate from standard purchase rules.
  • Refresh expired tokens proactively. Use network tokenization or account updater services to automatically refresh stored tokens when cards are reissued, preventing silent failures.

For Developers

  • Use network tokens, not PANs. Network tokens from Visa Token Service or Mastercard MDES are more durable than processor tokens and survive card reissuance automatically.
  • Implement proper SCA exemption flags. Pass the correct request_three_d_secure or exemption flags in your API call. Missing or incorrect flags cause issuers to decline or force a challenge, breaking the one-click experience.
  • Store tokens at the platform level, not the session level. Tokens should persist in your customer database linked to a customer ID — not in a browser session or JWT.
  • Log authorization reasons, not just outcomes. Capture issuer decline codes on one-click transactions separately. Soft declines (insufficient funds) behave differently than hard declines (token not recognized) and require different retry logic.
  • Test cross-device scenarios. A customer who saves their card on desktop should have the one-click option available on mobile. This requires server-side token storage and a proper customer identity layer.

Common Mistakes

Storing raw card data instead of tokens. Some older implementations or home-built systems stored actual card numbers server-side. This is a PCI DSS violation and a catastrophic security risk. Always delegate storage to a PCI-compliant processor via tokenization.

Not handling SCA exemptions correctly. Merchants who skip exemption logic or apply it incorrectly will see high decline rates on one-click transactions in Europe. The transaction must be flagged correctly as merchant-initiated or the issuer will require a 3DS challenge, which breaks the flow.

Showing one-click to non-logged-in users. Surfacing a "Pay instantly" button to a user who is not authenticated creates a confusing experience when the system asks them to log in mid-flow. One-click should only appear in authenticated contexts.

Ignoring token expiry. Processor tokens are not always permanent. Without account updater or network tokenization, stored tokens for reissued cards will fail silently until the customer manually updates their card — a major source of involuntary churn for subscription businesses.

No fallback for failed one-click attempts. If the one-click charge fails (expired card, insufficient funds, fraud block), the merchant must immediately redirect the customer to a standard card entry form rather than showing a generic error. Failing to provide a fallback means lost revenue even when the customer wants to complete the purchase.

One-Click Payments and Tagada

One-click payments are a core use case for payment orchestration, and this is where Tagada adds meaningful value for merchants operating across multiple markets or PSPs.

Tagada enables one-click across processors

Tagada's orchestration layer stores payment credentials as portable network tokens — not processor-specific tokens. This means a customer's saved card works whether Tagada routes the transaction to Stripe, Adyen, Braintree, or a local acquirer. Merchants avoid the lock-in that comes with storing tokens at the processor level, and can switch or add PSPs without forcing returning customers to re-enter their card details. One-click payments survive routing changes transparently.

For merchants expanding into new regions, Tagada's orchestration also handles the SCA exemption logic per market — applying the correct exemption flags for EU transactions while keeping one-click flows active in non-SCA regions — without requiring merchants to build separate integration paths per country.

Frequently Asked Questions

Are one-click payments secure?

Yes — one-click payments rely on tokenization, which replaces sensitive card data with a non-sensitive token stored by the payment processor. The merchant never stores raw card numbers. Strong Customer Authentication (SCA) is typically satisfied during the first transaction, and subsequent one-click purchases are treated as merchant-initiated or low-risk transactions, keeping fraud rates low while reducing friction for legitimate customers.

How do one-click payments differ from express checkout buttons like Apple Pay or Google Pay?

Express checkout buttons (Apple Pay, Google Pay, PayPal) use device-level credentials and require biometric or PIN confirmation on the device. One-click payments, in the traditional sense, use credentials already stored on the merchant's platform or payment provider and require no additional authentication step beyond clicking a button. Both reduce friction, but one-click payments are typically merchant-initiated, while express wallets are consumer-device-initiated.

Do one-click payments work across devices?

It depends on the implementation. If credentials are stored server-side by the payment provider or merchant platform, one-click payments work across any device where the customer is logged in. Device-local implementations (like some wallet solutions) require the same device. Cross-device support is a key advantage of platform-level card-on-file approaches and payment orchestration layers that centralize token storage.

What regulations apply to one-click payments in Europe?

In Europe, PSD2's Strong Customer Authentication (SCA) rules require strong authentication for electronic payments. One-click payments typically qualify under the 'merchant-initiated transaction' or 'low-value transaction' exemptions, or rely on the initial checkout satisfying SCA so subsequent payments are exempt. Merchants must work with compliant processors and ensure proper exemption logic is applied to avoid unnecessary declines.

Can subscription businesses use one-click payments?

Subscription businesses more commonly use recurring billing (merchant-initiated transactions with a mandate), which is distinct from one-click payments but shares the same underlying mechanism — stored credentials. One-click payments are better suited to on-demand repeat purchases, such as reordering on an ecommerce site or buying in-app, rather than fixed-interval billing. Many platforms support both flows from the same stored token.

What is the typical conversion uplift from enabling one-click payments?

Studies and merchant data consistently show significant uplift. Amazon's original 1-Click patent noted measurable abandonment reduction. Industry benchmarks suggest that eliminating manual card entry can reduce checkout abandonment by 20–30% for returning customers. The exact figure depends on traffic mix (new vs. returning), device type (mobile benefits more), and the baseline checkout experience being replaced.

Tagada Platform

One-Click Payments — built into Tagada

See how Tagada handles one-click payments as part of its unified commerce infrastructure. One platform for payments, checkout, and growth.