No fund aggregation, no commission. Customer payments are directly routed to the merchant's address. Supports automated blockchain scanning for TRC20/BEP20 with instant Webhook notifications.
Direct deposit to your wallet
Flat monthly fee, no percentage cuts
No odd cent adjustments, auto-sync
Standard RESTful APIs. Create orders with a simple POST request and fetch checkout URLs. Includes digital signature verification to prevent tampering.
curl -X POST https://api.tokenspay.cc/v1/orders \
-H "Content-Type: application/json" \
-H "x-api-key: mch_live_8f3d1e9a7c" \
-d '{
"amount": 100.00,
"currency": "USDT",
"network": "TRC20",
"order_id": "custom_invoice_10029"
}'
const axios = require('axios');
axios.post('https://api.tokenspay.cc/v1/orders', {
amount: 100.00,
currency: 'USDT',
network: 'TRC20',
order_id: 'custom_invoice_10029'
}, {
headers: { 'x-api-key': 'mch_live_8f3d1e9a7c' }
})
.then(res => console.log(res.data.checkout_url));
import requests
res = requests.post(
"https://api.tokenspay.cc/v1/orders",
headers={"x-api-key": "mch_live_8f3d1e9a7c"},
json={"amount": 100.00, "currency": "USDT", "network": "TRC20"}
)
print(res.json().get("checkout_url"))