Arcaud is a non-custodial USDT payment gateway. One signed API call generates a uniquely-priced invoice and a hosted checkout page — payments land directly in your own wallet, we never take custody of your funds.
Built for resellers and platforms who want crypto payments without building blockchain infrastructure themselves.
Every payment goes straight to a wallet you control. Arcaud only watches the chain and confirms — we never hold your funds.
Every invoice gets a unique reserved amount, so incoming transfers match automatically — no manual reconciliation of who paid what.
Every request is signed with HMAC-SHA256 and a timestamp window, with optional per-key IP whitelisting on top.
A clean, branded page with a QR code and live status — no payment UI for you to build or maintain.
A drop-in gateway module for DHRU Fusion resellers — upload two files, paste your keys, done.
Get a signed callback the moment a payment is confirmed on-chain, so your own system can react automatically.
No SDK required — Arcaud is a plain signed HTTP API.
POST /api/v1/invoices with an HMAC-SHA256 signature — get back a hosted checkout URL.$ curl -X POST https://arcaud.com/api/v1/invoices \ -H "Content-Type: application/json" \ -H "X-Merchant-ID: M-YOURID" \ -H "X-Timestamp: 1786800000" \ -H "X-Signature: <hmac_sha256>" \ -d '{ "reference_id": "order-1042", "amount": 25.00, "success_url": "https://you.com/ok", "cancel_url": "https://you.com/cancel" }' // 201 Created { "invoice_id": 1042, "status": "pending", "payment_url": "https://arcaud.com/pay/01M0...", "expires_at": "2026-08-15T23:47:00Z" }
Payment infrastructure gets attacked. Here's what actually protects your account.
Every API request is signed with your private key — nothing is accepted without a valid signature.
Requests outside a 5-minute timestamp window are rejected, so a captured request can't be replayed later.
Lock an API key down to the specific server IPs you trust.
Private keys are encrypted in our database, never stored or logged in plain text.
Per-IP and per-key request limits protect the API from abuse and brute-force attempts.
We can't lose, freeze, or misuse funds we never hold — payments settle directly to your own wallet.
No credit card required to get started.
Create an account and generate your first API key in a couple of minutes.
Get Started Free