Integration StepsStep 4: Redirect to Checkout

Step 4: Redirect to Checkout

Step 4: Redirect to Checkout

Once you receive the paymentUrl, redirect your customer to it.

Supported Behaviors

  • Open in the same tab or a new tab
  • Works on desktop and mobile
  • Mobile deep-linking supported

The checkout is fully hosted by Apara — no additional frontend code required.

What the Customer Sees

  1. Customer details form (skipped if pre-filled)
  2. Payment method selection (250+ APMs and crypto)
  3. Payment completion
  4. Confirmation screen

Example (Node.js)

const { paymentUrl } = response.data;
res.redirect(paymentUrl);

Example (Frontend)

window.location.href = paymentUrl;        // same tab
window.open(paymentUrl, '_blank');        // new tab