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 payment method
Load the payment link URL
in a webview or iframe. The standard flow renders an Apple Pay or Google Pay button; Embedded orders may first show Coinbase-hosted OTP verification or a limits upgrade.
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.
Choose an order experience
The Onramp Order API supports two experiences. PassphoneNumber and email to receive a ready to use pay button, where your app collects and verifies the user’s contact details. Omit both fields to use embedded orders, where Coinbase collects and verifies them in the hosted experience.
Requirements
User verification for the standard flow
This requirement applies to the standard Headless Onramp flow, where you collect and verify the user’s contact details. In Embedded orders, Coinbase collects the required contact and identity information in the hosted session instead.
smsVerificationId and emailVerificationId to the Create Onramp Order API — no OTP infrastructure of your own required.
Alternatively, you can run your own OTP verification using a vendor like Twilio or AWS SES and attest ownership of the email address and phone number in your order request.
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.Legal agreements
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:-
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.
- 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.
- 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.
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.
- 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"andreferrerpolicy="no-referrer"attributes on your iframe
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 apostMessage function on window.androidWebView. This bridges post message events from the webview into your native Android code:
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 theonramp.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 thePROCESSING status, implement your own timeout
mechanism to handle this case.
Testing
You can test your integration with the Headless Onramp API by creating sandbox orders. To create a sandbox order, just prefix thepartnerUserRef 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 apartnerUserRef 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=paymentattribute on the iframe element. - For Android WebView integrations, ensure that
javaScriptEnabledis set totrueandPaymentRequestEnabledis set totrueon yourWebSettings. - 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 thecbOnramp message handler.
Embedded orders
Embedded orders require account enablement. Contact your Coinbase representative or apply for Onramp access to get started.
How it works
Call the Create Onramp Order API without includingphoneNumber, email, agreementAcceptedAt, phoneNumberVerifiedAt, smsVerificationId, and emailVerificationId. Note that the embedded order experience emits additional post message events.
Reduce repeat verification with userAuthToken
When you create an embedded order, Coinbase returns a userAuthToken in the response; the standard flow does not return one. Store it securely on your backend as soon as you receive the response, associated with that user and replacing any older value. A user may have only one userAuthToken at any given time. The token contains no PII and becomes usable only after the user completes both phone and email verification—you do not need to wait for the purchase itself to finish. It remains valid for 60 days.
On a later purchase to the same wallet, pass the saved token in the Onramp Order API. If it is valid, the user skips OTP and the response returns the same token. The hosted flow checks limits separately, so the user may still need to complete a limits upgrade before payment.
In the case of passing an expired or invalid token, the request does not fail. Coinbase returns a new token and shows the required OTP steps. Store the new value in place of the previous token for that user.
Additional post message events
Embedded orders keep the existing payment post message events and add the four events below. Verification and limits progress events do not require a response from your app;session_error means the current hosted session cannot continue.
Emitted after the user’s phone number and email address are verified.
Emitted after the user successfully submits the limits-upgrade form.
Emitted after the limits upgrade is approved and the hosted flow can continue to payment.
Emitted when a terminal verification, limits, or order-preparation error must be surfaced to your app. The event includes
data.errorCode and data.errorMessage.Coinbase handles recoverable errors inside the hosted experience. Incorrect or expired OTPs, invalid identity input, pending limits review, and temporary connection errors do not emit session_error; the user can retry or continue in the same session.The possible error codes are:Track order status
Until the user passes OTP verification and, if required, completes the limits-upgrade form, Create Order and Get Order returnONRAMP_ORDER_STATUS_PENDING_VERIFICATION. No transaction webhook is emitted in this state.
After those steps, the order moves to ONRAMP_ORDER_STATUS_PENDING_PAYMENT, emits onramp.transaction.created, and follows the standard order lifecycle. If the user leaves before then, no transaction webhook is emitted.
Sandbox testing
Start with the standard sandbox setup, including thesandbox- partner user reference and payment-method URL parameter. Embedded orders add deterministic verification and limits behavior:
- Use any phone number beginning with
+1000, such as+10005550100, and any email ending in@sandbox.test, such astester@sandbox.test. - No SMS or email is sent. Enter
000000for both one-time passwords. - Omit
userAuthTokento show both contact-verification screens. A valid reusable token skips them. - The limits-upgrade form always appears. Enter any syntactically valid SSN last four digits and date of birth; the upgrade always succeeds.