Accept USDT as a stablecoin for predictable revenue without exposure to crypto volatility. Supports Tether on Tron (TRC20), Ethereum (ERC20), and Binance Smart Chain (BEP20). Direct-to-wallet settlement, 1% flat fee, no middleman.
USDT (Tether) is the most widely used stablecoin in crypto, pegged 1:1 to the US dollar. For merchants, it offers the speed and finality of a crypto payment with the price stability of a fiat currency — no swings between the moment a customer pays and the moment you receive the funds.
CryptoPayCheckout supports USDT on all three major networks: TRC20 (Tron, lowest fees, ~$1 per transfer), ERC20 (Ethereum, most liquid), and BEP20 (Binance Smart Chain, fast + cheap). Your customer picks the network they have funds on; you receive USDT in the wallet you configured.
Pay a flat 1% service fee, automatically forwarded to your wallet after on-chain confirmation. No monthly fees, no setup costs, no minimum volume. Perfect for SaaS subscriptions, digital products, freelance invoicing, or any merchant who wants dollar-stable crypto revenue.
USDT is pegged 1:1 to USD. $100 in USDT today is $100 in USDT tomorrow — no volatility risk.
Accept USDT on Tron, Ethereum, or BSC — whichever network your customers prefer.
TRC20 USDT confirms in ~1 minute with transfer fees under $1. Ideal for small payments.
No hidden tiers, no monthly minimum, no ACH or card-processor markup. Just 1%.
Crypto payments are final. Eliminate friendly fraud and payment disputes entirely.
POST a payment, get a checkout URL, redirect your customer. Done in five minutes.
Create a payment with a single API call. We handle blockchain monitoring, confirmations, exchange rate pricing, and automatic settlement to your wallet. Get notified via webhook when the payment confirms.
Read the full docs// Accept USDT on the Tron network (TRC20)
const res = await fetch('https://cryptopaycheckout.com/api/v1/payment/create', {
method: 'POST',
headers: {
'X-API-Key': YOUR_API_KEY,
'Content-Type': 'application/json'
},
body: JSON.stringify({
amount: 49.99,
currency: 'USDT_TRC20', // or USDT_ERC20, USDT_BEP20
order_id: 'order_12345'
})
})
const { checkout_url } = await res.json()
window.location = checkout_url