All termsCheckoutUpdated April 10, 2026

What Is Hosted Payment Page?

A hosted payment page is a secure, third-party checkout page where customers enter payment details, removing the merchant from direct contact with sensitive card data and simplifying PCI compliance.

Also known as: Hosted Payment Form, Hosted Checkout Page, Redirect Payment Page, Payment Hosted Page

Key Takeaways

  • A hosted payment page moves sensitive card data capture off the merchant's servers, shrinking PCI DSS scope to the lightest SAQ A tier.
  • Modern hosted pages support full brand customisation including logos, colours, and custom subdomains, reducing the conversion penalty of redirection.
  • Tokenization on the hosted page enables recurring billing and one-click purchases without the merchant ever storing raw card numbers.
  • Provider uptime risk can be mitigated by routing through a payment orchestration layer that supports multiple gateway failover.
  • Hosted payment pages are the fastest path for new merchants to accept cards legally and securely with minimal engineering investment.

A hosted payment page (HPP) is a checkout page operated entirely on a payment provider's infrastructure. Instead of filling in card details on the merchant's own website, shoppers are redirected to — or presented with an embedded iframe from — a secure page controlled by a gateway or payment service provider. The merchant never sees or stores raw card numbers; only a token comes back. For most small and mid-sized merchants, this is the safest and fastest route to accepting card payments online.

How a Hosted Payment Page Works

Understanding the sequence of events clarifies exactly where security and responsibility sit.

01

Customer initiates checkout

The shopper clicks "Pay" on the merchant's website. The merchant's server creates an order record and generates a unique session token, then redirects the browser — or loads an iframe — pointing to the payment provider's hosted page.

02

Provider renders the payment form

The payment gateway serves a PCI-certified page over HTTPS. This page displays the merchant's branding but lives on the provider's servers. The shopper enters their card number, expiry, and CVV directly into the provider's form fields.

03

Card data is captured and vaulted

The provider's servers receive the raw card data, validate the format, and immediately vault it — replacing the PAN with a non-sensitive tokenization reference. The merchant's servers are never in the data path.

04

Authorization request is sent

The gateway submits an authorization request to the card network and issuing bank. The bank approves or declines based on fraud rules, available funds, and 3DS authentication if required.

05

Result is returned to the merchant

The provider redirects the browser back to the merchant's confirmation URL (or posts a webhook), passing the transaction result, a transaction ID, and a reusable payment token. The checkout is complete.

Why Hosted Payment Page Matters

Choosing a hosted payment page is not just a technical decision — it carries significant business and regulatory weight for anyone selling online.

PCI scope reduction is the headline benefit. PCI DSS divides merchants into Self-Assessment Questionnaire tiers based on how they handle card data. Merchants using a fully redirected hosted payment page qualify for SAQ A — the simplest tier with roughly 22 controls — compared to SAQ D, which carries over 300 controls for merchants who process card data themselves. For a small team, the difference is weeks of compliance work vs. an afternoon.

Fraud and security costs shift to the provider. The 2023 Verizon Data Breach Investigations Report found that payment card data remains one of the most targeted asset types in web application attacks. When card data never touches merchant infrastructure, the attack surface shrinks to near zero from the merchant's perspective. The provider's security team, 24/7 monitoring, and dedicated PCI audits handle protection at scale.

Conversion impact is smaller than assumed. A 2024 Baymard Institute study found that 17% of US shoppers have abandoned a cart due to distrust of the payment page — meaning a well-branded, familiar hosted page from a recognised provider can actually increase trust vs. a homegrown form that looks unfamiliar. Latency is the real enemy: hosted pages loading over 3 seconds see a measurable drop in completion rates.

Regulatory note

In the EU, hosted payment pages must support Strong Customer Authentication (SCA) under PSD2. Most major providers bake 3DS2 into their hosted pages automatically, handling the authentication challenge flow without merchant-side code changes.

Hosted Payment Page vs. Embedded Payment Form

Both approaches let customers pay on your site, but the technical and compliance implications are very different.

DimensionHosted Payment PageEmbedded Payment Form
Card data pathProvider servers onlyMerchant + provider servers
PCI SAQ tierSAQ A (lightest)SAQ A-EP or SAQ D
CustomisationModerate (CSS, logo, colours)Full (any UI possible)
Redirect requiredYes (or iframe)No
Engineering effortLowMedium–High
Fraud liabilityLargely on providerShared / merchant
Best forSMBs, fast launchesEnterprise, bespoke UX

For merchants prioritising launch speed and compliance simplicity, the hosted page wins. For those needing pixel-perfect UX control and willing to invest in security infrastructure, an embedded payment form may be justified.

Types of Hosted Payment Page

Not all hosted payment pages work the same way. Knowing the variants helps you choose the right integration.

Full-page redirect — The browser navigates away from the merchant's domain to the provider's URL. Simplest integration; requires one or two lines of server-side code. The customer sees a domain change in the address bar.

iFrame embed — The hosted page loads inside an <iframe> on the merchant's site, so the customer never appears to leave. The URL stays on the merchant's domain, but the card form is technically served from the provider. Qualifies for SAQ A if implemented correctly.

Custom subdomain (white-label) — The provider hosts the page but maps it to a merchant-controlled subdomain (e.g., pay.yourstore.com) using a CNAME. Offers the best of both worlds: full PCI offload with seamless brand continuity.

Payment link — A pre-built hosted page accessed via a shareable URL (email, SMS, WhatsApp). No ecommerce integration needed; the merchant sends the link and the customer pays. Common for invoicing and service businesses.

Best Practices

For Merchants

  • Brand the page fully. Upload your logo, set brand colours, and if the provider supports it, use a custom subdomain. Unbranded hosted pages increase cart abandonment.
  • Enable 3DS2. Activate Strong Customer Authentication even in markets where it is not yet mandatory — it shifts chargeback liability to the issuer for authenticated transactions.
  • Test on mobile. Over 60% of ecommerce checkouts happen on mobile. Confirm the hosted page renders correctly on iOS Safari and Chrome Android before going live.
  • Monitor provider uptime. Set up status-page alerts for your payment provider. An unmonitored outage can silently kill revenue for hours.
  • Store the token, not the card. Use the payment token returned after the first transaction to power subscription billing and one-click repeat purchases without asking customers to re-enter details.

For Developers

  • Validate the redirect URL server-side. Never trust the return URL sent by the browser — regenerate it server-side to prevent open-redirect attacks.
  • Use webhooks, not redirect params, for order confirmation. Redirect parameters can be tampered with or missed if the user closes the tab. Treat the webhook as the authoritative source of truth.
  • Implement idempotency keys. If a customer double-clicks or the webhook fires twice, idempotency prevents duplicate charges.
  • Audit your iFrame Content Security Policy. If using an iframe embed, update your CSP frame-src directive to allow only the provider's domain — nothing broader.
  • Log the full payment response. Store transaction IDs, gateway response codes, and timestamps. You will need them for dispute resolution and reconciliation.

Common Mistakes

1. Trusting redirect parameters for fulfilment. Redirecting back with ?status=success in the URL is not proof of payment. A determined user can manually craft that URL. Always confirm via webhook or a server-side status check before releasing goods.

2. Skipping mobile QA. Developers often test on desktop Chrome and miss layout issues on mobile browsers. Hosted pages with fixed-width forms or poor touch targets see significantly lower mobile conversion.

3. Not handling payment failures gracefully. Many integrations redirect declined customers to a generic error page. A better pattern is returning them to the cart with a specific, actionable message ("Your card was declined — try a different card or contact your bank") and preserving their cart state.

4. Assuming the hosted page covers all PCI requirements. SAQ A still requires merchants to maintain a secure website, use HTTPS, and have a policy for handling cardholder complaints. The hosted page reduces scope — it does not eliminate PCI obligations entirely.

5. Ignoring PCI compliance documentation. Some acquiring banks require merchants to submit their SAQ annually even when using a hosted page. Failing to do so can result in fines or account suspension, even though the technical risk is minimal.

Hosted Payment Page and Tagada

Tagada is a payment orchestration platform that lets merchants connect to multiple payment gateways — and their respective hosted payment pages — through a single integration. Rather than locking into one provider's hosted page, you configure routing rules so that transactions flow to the best-available gateway based on cost, acceptance rate, or geography.

Failover for hosted pages

If your primary gateway's hosted page goes down, Tagada's orchestration layer can automatically route the checkout session to a secondary provider's hosted page — keeping your checkout live without manual intervention. This turns a single point of failure into a resilient, multi-provider checkout experience.

This is especially valuable when operating across multiple markets: a European provider's hosted page may outperform a US-centric one for EUR transactions, while a local acquirer's page increases acceptance rates in Southeast Asia. Tagada normalises the integration so you get the compliance benefits of hosted pages everywhere, with the flexibility of a multi-gateway strategy.

Frequently Asked Questions

What is a hosted payment page?

A hosted payment page is a secure checkout page operated by a payment gateway or processor — not the merchant — where customers enter their card details. Because the page lives on the provider's infrastructure, the merchant's servers never touch raw card data, which dramatically reduces PCI DSS compliance scope and liability.

How does a hosted payment page differ from an embedded payment form?

An embedded (or inline) payment form collects card data directly on the merchant's website, meaning the merchant must secure that environment to PCI SAQ A-EP or SAQ D standards. A hosted payment page redirects the customer to a separate domain controlled by the payment provider, allowing the merchant to qualify under the simpler PCI SAQ A, which has far fewer requirements.

Is a hosted payment page bad for conversion rates?

Historically yes — redirecting customers away from your site introduced friction. However, modern hosted pages are fully brandable, mobile-optimised, and load in under two seconds, closing much of the conversion gap. Studies from major payment providers show well-configured hosted pages convert within 3–5 percentage points of inline forms, a trade-off most SMBs consider worthwhile given the compliance savings.

Who owns the customer's payment data on a hosted payment page?

The payment service provider (PSP) or gateway hosting the page holds the raw card data in their secure vault. The merchant typically receives a token — a non-sensitive reference string — that can be used for future charges, refunds, or subscriptions without ever re-entering card details. This is the basis of network tokenization and recurring billing.

Can I customize the look of a hosted payment page?

Yes. Most modern gateways expose CSS overrides, logo uploads, custom font settings, and colour-scheme controls. Some offer a full white-label option where the URL itself is a subdomain of the merchant's domain (e.g., pay.yourstore.com), preserving brand trust while the technical hosting remains on the provider's PCI-certified infrastructure.

What happens if the hosted payment page provider has downtime?

If the provider experiences an outage, customers cannot complete checkout — a key vendor risk. This is why payment orchestration platforms route transactions across multiple hosted-page providers, failing over automatically so downtime on one gateway does not stop revenue.

Tagada Platform

Hosted Payment Page — built into Tagada

See how Tagada handles hosted payment page as part of its unified commerce infrastructure. One platform for payments, checkout, and growth.