SDKs & Developer Tools

Bila provides a variety of SDKs and developer tools to help you integrate our services into your applications quickly and easily.

Official SDKs

Installation

Node.js

npm install bila-node
# or
yarn add bila-node

Python

pip install bila-python

PHP

composer require bila/bila-php

Quick Start

Here’s a simple example of how to use the Bila SDK in Node.js:

const Bila = require('bila-node');

// Initialize the client with your API key
const bila = new Bila('your_api_key');

// Create a payment
async function createPayment() {
  try {
    const payment = await bila.payments.create({
      amount: 1000,
      currency: 'USD',
      description: 'Payment for Order #123',
      customer: {
        email: 'customer@example.com',
        name: 'John Doe'
      },
      redirect_url: 'https://your-website.com/payment-success'
    });
    
    console.log('Payment created:', payment);
    return payment;
  } catch (error) {
    console.error('Error creating payment:', error);
    throw error;
  }
}

createPayment();

API Reference

Our SDKs provide a convenient interface to interact with the Bila API. For detailed information about the available methods and parameters, refer to the API reference for each SDK:

Additional Tools

Postman Collection

We provide a Postman collection that you can use to test our API endpoints directly:

Postman Collection

Download and import our Postman collection to test the Bila API

Libraries

In addition to our official SDKs, we also provide libraries for specific use cases:

UI Components

React and Vue components for payment forms, checkout pages, and more

Webhooks Tester

Test your webhook integration with our webhook tester tool:

Webhooks Tester

Test your webhook integration without making real API calls

Support

If you need help with our SDKs or developer tools, you can:

Contributing

We welcome contributions to our SDKs and developer tools. If you’d like to contribute, please:

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Submit a pull request

For more information, see our contribution guidelines.