Add Crypto → INR Off-Ramps To Your Product
Integrate sandbox rates, non-binding INR quotes, request tracking, and a production review path for wallets, exchanges, OTC desks, bots, and fintech apps.
Live route simulation
Wallet to INR payout
Quote response
USDT / TRC20
INR 98,700
false
5 minutes
₹ payout path after production approval.
Sandbox never creates live orders or moves funds.
The primitives partners need before production money movement.
Keep the integration simple: authenticate, read rates, create quotes, trace requests, and submit for production review.
A clean backend flow for off-ramp products.
AMOTCX gives partners a sandbox path first. Production access is enabled only after review.
Read DocumentationUser taps Sell Crypto
Your product starts the off-ramp journey.
Backend requests quote
Your server calls AMOTCX with a sandbox key.
User confirms details
Show amount, route, quote, and payout method.
Workflow is reviewed
Production settlement remains approval-gated.
Status returns
Use request IDs and signed notifications when enabled.
Built for focused INR withdrawal journeys.
Start with supported stablecoin routes, then expand eligibility through the production review workflow.
Asset
USDT
Asset
USDC
Additional assets available after production review.
Copy the request. Inspect the response. Keep live access gated.
Sandbox APIs help teams prototype safely. Production terms, webhooks, and settlement workflows are finalized during review.
Hashed API keys
Secrets are shown once and stored hashed.
Stable errors
Predictable API responses for integration handling.
Request IDs
Every response carries traceable support context.
Server-side quotes
INR quote calculations stay on AMOTCX systems.
const quote = await fetch("/api/developers/quotes", {
method: "POST",
headers: {
Authorization: "Bearer amx_sandbox_sk_...",
"Content-Type": "application/json"
},
body: JSON.stringify({
amount: 1000,
asset: "USDT",
network: "trc20",
payoutMethod: "BANK"
})
})
const { data, requestId } = await quote.json(){
"data": {
"id": "quote_sandbox_...",
"asset": "USDT",
"network": "trc20",
"rate": 98.7,
"receiveAmountInr": 98700,
"binding": false,
"expiresAt": "..."
},
"requestId": "req_..."
}