Skip to main content
← Back to plugins
Stripe Payments

Stripe Payments

Plugin to enable payments through Stripe via the Payment Intents API.

Version3.5.5
Compatibility^3.0.0
CategoryPayment & Tax
Downloads14.4K monthly
Last updatedMar 26, 2026

No documentation available.

Documentation

Requirements

  1. You will need to create a Stripe account and get your secret key in the dashboard.
  2. Create a webhook endpoint in the Stripe dashboard (Developers -> Webhooks, "Add an endpoint") which listens to the payment_intent.succeeded and payment_intent.payment_failed events. The URL should be https://my-server.com/payments/stripe, where my-server.com is the host of your Vendure server. Note: for local development, you'll need to use the Stripe CLI to test your webhook locally. See the local development section below.
  3. Get the signing secret for the newly created webhook.
  4. Install the Payments plugin and the Stripe Node library: npm install @vendure/payments-plugin stripe

Setup

  1. Add the plugin to your VendureConfig plugins array:
    Ts
    For all the plugin options, see the {@link StripePluginOptions} type.
  2. Create a new PaymentMethod in the Admin UI, and select "Stripe payments" as the handler.
  3. Set the webhook secret and API key in the PaymentMethod form.

Complete documentation

See the StripePlugin docs for full documentation