Skip to main content
You can get started testing the Headless Onramp API using sandbox mode. When you’re ready to go live, apply for access — you get production access immediately after your app is approved. This is the recommended path for Apple Pay and debit card onramp flows.
The v2 Onramp Order API enables you to build a native feeling onramp experience with Apple Pay or Google Pay where the user never leaves your app. It’s the fastest onramp experience available anywhere. Integrating takes only three steps:

Integration steps

1

Call the API

Call the Create Onramp Order API to get a quote and a payment link. You can fetch the list of available currencies from the Buy Options API.
2

Render the pay button

Render the Apple Pay or Google Pay button via the payment link URL in a webview or iframe in your app.
3

Listen to events and update transaction status

Subscribe to post message events from the webview/iframe to listen for success/error messages. Use these events to notify the user when their transaction succeeds, or what type of error they encountered and how they might fix it.

Requirements

User verification

In order to provide an API driven native onramp experience, we rely on you, the app developer, to collect and verify the user’s email address and phone number in your request to the Create Onramp Order API. You must verify the user’s ownership of the email address and phone number, this can be done by sending an OTP using a vendor like Twilio or AWS SES. Additionally, the phone number must be re-verified at least every 60 days.

US only

The Headless Onramp API is currently available for US users with valid US phone numbers. The phone number must be a real cell phone number, not a VoIP phone number.

Supported platforms

The onramp payment link can be rendered in:
  • iOS apps: Via a webview in an iOS app (Apple Pay)
  • Android apps: Via a WebView in an Android app (Google Pay — see Android app requirements below)
  • Web apps: Via iframe on your website (Apple Pay — requires additional setup, see Web app requirements below)

User gesture required

Both Apple Pay and Google Pay require that a payment session be created by a user gesture. This means that the user has to physically press the pay button we render within the webview/iframe. It cannot be programmatically triggered. Your users must accept Coinbase’s Guest Checkout Terms of Service, User Agreement and Privacy Policy prior to using Coinbase Onramp. It is your responsibility to clearly inform users that by proceeding with this payment they are agreeing to these policies.

Android App Requirements

To use Google Pay with the Headless Onramp in your Android app, you must:
  1. Get approved for Google Pay — Your app must be approved by Google before Google Pay will work in production. Follow the Google Pay publish your integration guide to create a business profile, accept the Terms of Service, and submit your app for approval.
    When registering your app in the Google Pay & Wallet Console, select gateway as the integration type. After you submit your initial application to go live, you’ll need an evidence of partnership document to share with Google Pay representatives. Reach out to your account manager, or reach out to support to request this information.
  2. Configure your Android WebView for Google Pay — The Payment Request API must be enabled in your WebView to launch the Google Pay payment sheet. Follow Google’s official Using Android WebView guide to add the required dependencies, intent filters, and WebView settings.
  3. Call the Create Onramp Order API — Once your app is approved and the WebView is configured, call the Create Onramp Order API to get a payment link, load it in your configured WebView, and listen for post message events to track payment status.
Your app must be approved by Google before Google Pay will work in production. In test environments, you can use the Google Pay test suite without approval.

Web App Requirements

Interested in integrating Apple Pay for your web app? Web app integrations require additional setup steps. Apply for Onramp access to get started.
Rendering the Apple Pay Onramp payment link on your web app in an iframe requires some additional security measures to ensure the safety of your users.
  • Your web app’s domain must be registered on the domain allow list in CDP portal
  • You must pass the domain name to the create onramp order API when creating a payment link
  • You must verify the ownership of your domain by hosting a domain verification file (provided by us)
  • Your domain must not be registered with any other Apple Merchant ID in the Apple Developer Portal
  • You must include the sandbox="allow-scripts allow-same-origin" and referrerpolicy="no-referrer" attributes on your iframe
To get started with your web app integration, apply for Onramp access. The onboarding flow will guide you through the process of verifying your domain. You will also need to consider the different levels of Apple Pay support provided by various browsers. Safari offers native Apple Pay support, but other browsers offer a QR code experience where the user can scan the code and complete payment on their phone.

Post message events

Payment links returned by the Create Order API are designed to be loaded within a webview so that your app can subscribe to post message events emitted by our web component. Events contain an error code and an error message. The message will be localized for the user so it can be displayed directly in your app UI. See the documentation of your webview library for details on how to consume post message events. Android apps must inject a JavaScript interface that exposes a postMessage function on window.androidWebView. This bridges post message events from the webview into your native Android code:
Register this interface on your WebView before loading the payment link so that all events are forwarded to your app.
Post message event structure

Events names

The following events are published by the payment link for both Apple Pay and Google Pay.
Emitted when Javascript is initialized and we have started fetching data required to render.
Emitted when the pay button is successfully rendered and ready for user interaction.
Emitted when an error occurred attempting to initialize the pay button. See the error message for more details. Some possible error codes are listed below.
Emitted after the user presses the pay button if the transaction was successfully started.
Emitted after the user presses the pay button if the transaction could not be started. See the error message for more details regarding the payment failure reasons. Some possible error codes are listed below.
Emitted if the user cancels the payment popup.
If you keep the webview active in your app after receiving the onramp_api.commit_success message, the webview will poll our transaction status API automatically and report success or failure via the following two events.
Emitted if the transaction completed successfully and funds have been sent to the destination wallet address.
Emitted if there was an error processing the transaction. Some possible error codes are listed below.

Order lifecycle

The following diagram shows the complete order lifecycle from order creation through settlement, including the corresponding post message events and API order statuses at each stage.

Integration guide

Tracking transactions

When tracking transactions in your database, create and record transaction when you receive the onramp.transaction.updated event (ONRAMP_ORDER_STATUS_PROCESSING) after user has authenticated and committed payment. This ensures your records reflect only committed transactions, and not potentially abandoned workflow.

Handling user cancellation

Webhook event does not emit a terminal failure status when a user abandons the payment flow on the front-end without completing it. Order will remain in Processing on your backend indefinitely. If your integration records orders before the PROCESSING status, implement your own timeout mechanism to handle this case.
If user completes the created payment after your timeout has expired, the transaction will still be processed and captured. You can reconcile any completed transactions by calling the Get all onramp transactions API.

Testing

You can test your integration with the Headless Onramp API by creating sandbox orders. To create a sandbox order, just prefix the partnerUserRef parameter in your call to the Create Onramp Order API with the string sandbox-. Doing so will result in your transaction always succeeding, but your debit card will never be charged. For the phoneNumber parameter, you can use any random phone number, as long as it’s in a valid US phone number format (example: +1 international code + US area code + 7 digit number; +12345678901)

Web app testing

When using a partnerUserRef prefixed with sandbox-, embedding the payment link is always allowed on http://localhost (for local web or iOS simulator testing) and http://10.0.2.2 (for Android emulator testing), so no domain registration is required for local testing. You must also append a sandbox query parameter to the payment link URL — this is required for local dev embedding and replaces the real payment sheet with a fake popup. Use the parameter that matches the payment method in your API request:
  • For Apple Pay: append &useApplePaySandbox=true
  • For Google Pay: append &useGooglePaySandbox=true

Android app testing

You can test Google Pay in your Android app without production approval by using the sandbox order flow described above. The Google Pay test suite allows you to validate your WebView integration before submitting your app for approval. See the Google Pay test and deploy guide for details.

Troubleshooting

  • When integrating via iframe, make sure to include the allow=payment attribute on the iframe element.
  • For Android WebView integrations, ensure that javaScriptEnabled is set to true and PaymentRequestEnabled is set to true on your WebSettings.
  • If Google Pay is not appearing on a test device, verify that the device meets Google’s minimum requirements.
  • Mobile integrations (iOS and Android) may not function properly if your app is not subscribed to post message events. This applies even during local testing — ensure your post message listener is wired up before loading the payment link.

Reference Implementation

To explore our full set of Onramp demo applications across web, backend, and mobile, see the Onramp demo app collateral. For a web reference implementation showing how Apple Pay can be embedded directly in your web app, see the Apple Pay web demo source code. For a full React Native / Expo mobile reference implementation that showcases the Onramp v2 API, CDP Wallets, and Apple Pay integration, see the Onramp v2 mobile demo app source code. For native iOS implementations, see our iOS WKWebView demo which shows how to embed the Apple Pay flow in a native app using WKWebView and handle payment events through the cbOnramp message handler.