Build seamless USDT payments into your app with our simple REST API.
PAYchat Partner API lets you:
Base URL: https://paychat.me/api/partner
Install our Node.js SDK for the easiest integration:
npm install paychat-sdk
import PAYchatClient from 'paychat-sdk';
const client = new PAYchatClient('pk_your_api_key');
// Create payment
const payment = await client.createPayment({
amount: 10,
description: 'Limited Edition T-Shirt'
});
console.log(payment.payment.payment_url);