New • Financial Connections

Financial infrastructure
for the internet

Millions of companies of all sizes use Stripe online and in person to accept payments, send payouts, automate financial processes, and ultimately grow revenue.

A fully integrated suite of payments products

Billing

Build and scale your recurring revenue.

Connect

Everything platforms and marketplaces need to get paid and route payments globally.

Designed for developers

Stripe makes it easy for developers to integrate robust payment processing with a few lines of code. The powerful API allows you to build completely custom flows.

// Create a PaymentIntent
const paymentIntent = await stripe.paymentIntents.create({
  amount: 1099,
  currency: 'usd',
  automatic_payment_methods: {
    enabled: true,
  },
});