Client Libraries

Powerful, open-source libraries to integrate Paycript in your applications.

Integrate with Your Favorite Language

Our client libraries make it easy to integrate cryptocurrency payments into your applications, regardless of the programming language or platform you're using.

All our libraries are open-source, well-documented, and designed to provide a consistent experience across platforms.

Comprehensive API coverage
Type-safe implementations
Regular updates and maintenance
Detailed documentation and examples
Code Libraries

Available Libraries

JavaScript

This library is not yet available. Stay tuned!

Coming SoonSoon

Python

This library is not yet available. Stay tuned!

Coming SoonSoon

PHP

This library is not yet available. Stay tuned!

Coming SoonSoon

Java

This library is not yet available. Stay tuned!

Coming SoonSoon

Go

This library is not yet available. Stay tuned!

Coming SoonSoon

Ruby

This library is not yet available. Stay tuned!

Coming SoonSoon

Quick Start Example

JavaScript Library Example

Here's a simple example of how to create a payment using our JavaScript library:

const { Paycript } = require('paycript-node');

// Initialize the client
const paycript = new Paycript({
  merchantId: 'your_merchant_id',
  secretKey: 'your_secret_key',
});

// Create a payment
async function createPayment() {
  try {
    const payment = await paycript.payments.create({
      amount: 100.00,
      orderId: 'order_12345',
      currency: 'USD'
    });
    
    console.log('Payment created:', payment);
    // Redirect user to payment.url
  } catch (error) {
    console.error('Error creating payment:', error);
  }
}

createPayment();

Ready to Start Integrating?

Create your Paycript account today and get access to all our libraries and SDK documentation.