SDK Documentation
Explore our simple and flexible SDK to quickly implement Paycript integration.
SDK Overview
The Paycript SDK enables fast and secure integration of crypto payments. Whether you run an e-commerce store or a SaaS platform, you can manage your payment processes with simple functions.
We also provide sample SDKs in various programming languages, so you can quickly integrate Paycript into your preferred environment. We'll be adding more examples soon!
Easy Setup
Integrate into your projects in just a few steps by adding a single dependency.
Secure Transactions
Protect payment data with end-to-end encryption and advanced security measures.

Quick Start
Follow the steps below to set up the SDK in your project within minutes.
Install the Package
Use NPM or Yarn to add the Paycript SDK to your project:
npm install paycript-sdk
API Key
Add the API key obtained from your Paycript account to your project.
First Call
Validate your integration with a simple payment creation example.
Example Usage
The following example gives a simple idea of how you can use the SDK.
import Paycript from 'paycript-sdk';
const paycript = new Paycript('API_KEY');
// Create a new payment
const payment = await paycript.createPayment({
amount: 100,
currency: 'USDT',
network: 'TRC20',
});
console.log(payment); // Payment details
Refer to the detailed documentation for more advanced examples and custom scenarios.

Frequently Asked Questions
Which programming languages are compatible with the SDK?
The SDK can be seamlessly integrated into projects that use JavaScript or TypeScript. It is suitable for both Node.js and browser-based environments.
Can I install it using package managers other than NPM?
Yes. You can easily install the Paycript SDK via alternatives like Yarn.
Does it create a global object?
No. Paycript SDK is used as a class. You can create specific instances for your project's needs.
How can I get support for issues?
If you encounter any integration problems or errors, you can reach the Paycript support team via email or live chat.