AMOTCX Developers

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.

Sandbox AvailableProduction Review WorkflowAPI Key AuthenticationRequest TrackingDeveloper Support

Live route simulation

Wallet to INR payout

Sandbox
Wallet
Exchange
Broker
Fintech
TRC20
BEP20
ERC20
BASE

Quote response

Asset

USDT / TRC20

Receive

INR 98,700

Binding

false

Expires

5 minutes

₹ payout path after production approval.

Sandbox never creates live orders or moves funds.

Sandbox API surface

The primitives partners need before production money movement.

Keep the integration simple: authenticate, read rates, create quotes, trace requests, and submit for production review.

Rates API

Read authenticated sandbox USD/INR rates and supported routes.

Quotes API

Create non-binding sandbox quotes for INR withdrawal experiences.

API Keys

Generate, rotate, and revoke sandbox credentials safely.

Webhooks

Signed status notifications for production integrations.

Docs

Use examples for Node.js, Python, Go, PHP, and cURL.

Production Review

Submit company and integration details before going live.

How integration works

A clean backend flow for off-ramp products.

AMOTCX gives partners a sandbox path first. Production access is enabled only after review.

Read Documentation
1

User taps Sell Crypto

Your product starts the off-ramp journey.

2

Backend requests quote

Your server calls AMOTCX with a sandbox key.

3

User confirms details

Show amount, route, quote, and payout method.

4

Workflow is reviewed

Production settlement remains approval-gated.

5

Status returns

Use request IDs and signed notifications when enabled.

Assets and partner fit

Built for focused INR withdrawal journeys.

Start with supported stablecoin routes, then expand eligibility through the production review workflow.

Asset

USDT

TRC20ERC20BEP20

Asset

USDC

ERC20Base

Additional assets available after production review.

WalletsExchangesOTC desksTelegram botsTrading toolsFintech appsBroker dashboardsTreasury teams

Developer proof

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.

quote.ts
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()
response.json
{
  "data": {
    "id": "quote_sandbox_...",
    "asset": "USDT",
    "network": "trc20",
    "rate": 98.7,
    "receiveAmountInr": 98700,
    "binding": false,
    "expiresAt": "..."
  },
  "requestId": "req_..."
}
Sandbox AvailableNo live funds in sandboxProduction Review Workflow