Quick Start
Get started with EFundFlow in just a few simple steps
1
Get API Keys
Register your account and obtain your API keys to start using our services.
2
Integrate SDK
Choose the SDK suitable for your project and quickly complete integration following our documentation.
3
Start Transactions
Call our API to create transactions and enjoy secure, fast payment experiences.
Code Example
// Create a payment transaction
const transaction = await efundpay.transactions.create({
amount: 10000, // $100.00
currency: 'USD',
description: 'Product Purchase',
customer: {
email: 'customer@example.com'
}
});
console.log('Payment URL:', transaction.payment_url);