Official libraries

Developer SDKs

Official libraries to integrate FlujiPay in your favorite language in minutes.

Node.js

npm install @flujipay/node
import 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 flujipay
import flujipay

client = flujipay.Client('YOUR_API_KEY')

payment = client.payments.create(
    amount=5000,
    currency='USD',
    description='Order #1234',
)

PHP

composer require flujipay/flujipay-php
use FlujiPay\Client;

$client = new Client('YOUR_API_KEY');

$payment = $client->payments->create([
    'amount' => 5000,
    'currency' => 'USD',
    'description' => 'Order #1234',
]);