Official libraries
Developer SDKs
Official libraries to integrate FlujiPay in your favorite language in minutes.
Node.js
npm install @flujipay/nodeimport FlujiPay from '@flujipay/node'
const client = new FlujiPay('YOUR_API_KEY')
const payment = await client.payments.create({
amount: 5000,
currency: 'USD',
description: 'Order #1234',
})Python
pip install flujipayimport flujipay
client = flujipay.Client('YOUR_API_KEY')
payment = client.payments.create(
amount=5000,
currency='USD',
description='Order #1234',
)PHP
composer require flujipay/flujipay-phpuse FlujiPay\Client;
$client = new Client('YOUR_API_KEY');
$payment = $client->payments->create([
'amount' => 5000,
'currency' => 'USD',
'description' => 'Order #1234',
]);