Skip to content

Documentation

Everything you need to integrate PayFlow into your application.

Simple, powerful APIs

PayFlow APIs are designed to be intuitive yet powerful. Get started with just a few lines of code.

  • RESTful API with predictable URLs
  • Client libraries in 7+ languages
  • Webhooks for real-time events
const payflow = require('payflow')('sk_test_...');

// Create a payment intent
const payment = await payflow.paymentIntents.create({
  amount: 2000,
  currency: 'usd',
  payment_method_types: ['card'],
});