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.

Available Libraries
JavaScript
This library is not yet available. Stay tuned!
Python
This library is not yet available. Stay tuned!
PHP
This library is not yet available. Stay tuned!
Java
This library is not yet available. Stay tuned!
Go
This library is not yet available. Stay tuned!
Ruby
This library is not yet available. Stay tuned!
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.