Skip to content

Autlantic PaymentsUSDT on TRON, verified

Node SDK and hosted API for merchant checkouts. Direct payouts to your wallet, on-chain confirmation, sandbox testing.

Two ways to integrate

ModeBest for
npm SDKNode backends, full control, self-hosted
Hosted HTTP APIAny stack (curl, mobile, PHP), API key only
bash
npm install @autlantic/payments
ts
import { AutlanticPayments } from "@autlantic/payments";

const payments = AutlanticPayments.fromEnv();
const intent = payments.createIntent({
  merchantRef: "order_123",
  amountUsdt: 20,
  payToAddress: "TYourPayoutAddress…",
  matchStrategy: "minimum_amount",
  expiresAt: new Date(Date.now() + 60 * 60 * 1000),
});

See Getting started for the full flow.