Stripe on cloudflare

Hello, does stripe webhook work on cloudflare, does it need additional setup or it will work fine?
Solution
Fixed by adding: httpClient to stripe.

const stripeClient = new Stripe(process.env.STRIPE_SECRET_KEY!, {
    apiVersion: '2025-09-30.clover', // Latest API version as of Stripe SDK v19
    httpClient: Stripe.createFetchHttpClient(), // Added this
});
Was this page helpful?