Apple Pay on Stripe

Easy Apple Pay integration for businesses built on Stripe.

Get started with Apple Pay Read blog post

One touch to pay on iOS

Eliminate credit card entry in your iOS app

Apple Pay facilitates frictionless credit card payments on iOS, eliminating the need for any manual typing of card or shipping details by your customer. Payments are authorized with TouchID.

You can use the integration to let your customers pay for physical goods (such as groceries, clothing, and appliances) or for services (such as club memberships, hotel reservations, and tickets for events) with one touch.


- (void)paymentAuthorizationViewController:(PKPaymentAuthorizationViewController *)controller
                       didAuthorizePayment:(PKPayment *)payment
                                completion:(void (^)(PKPaymentAuthorizationStatus))completion {

    [Stripe createTokenWithPayment:payment
                        completion:^(STPToken *token, NSError *error) {
        // charge your Stripe token as normal
    }];
}

Businesses in the US, UK, Canada, Australia, and Singapore can add Apple Pay to their app with just a few lines of code, and start accepting payments today.