Part 1: Introduction & Authentication


🚀 PAYchat Partner API

Build seamless USDT payments into your app with our simple REST API.


👋 Welcome

PAYchat Partner API lets you:

Base URL: https://paychat.me/api/partner


📦 Official SDK

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);

📖 Full SDK Documentation


🔑 Authentication