OTC Platform MSB

Developer Center (Private Beta)

This page provides structure and examples for integration planning. Access and keys are issued upon request.

API overview

Resource boundaries: orders, customers, funds, and statuses.

Open →

Auth & keys

Key issuance, scopes, and signature examples.

Open →

Event callbacks

Event list and payload samples (no real endpoints disclosed).

Open →

Errors

Common error shape and retry guidance.

Open →

Changelog

Compatibility notes and changes.

Open →

Status

Operational status and notification (sample).

Open →

API overview

Order lifecycle: create → verify → settle → reconcile. Example object (not a real endpoint).

{
  "id": "ord_01H…",
  "type": "onramp",
  "status": "pending",
  "fiat": { "currency": "USD", "amount": "1000.00" },
  "crypto": { "asset": "USDT", "network": "TRON", "amount": "999.10" },
  "created_at": "2026-03-31T00:00:00Z"
}

Auth & keys

Keys and scopes are managed in the ops console (beta). We recommend environment separation and least privilege.

Authorization: Bearer <api_key>
X-Request-Id: <uuid>

To request access, submit regions/currencies and expected flow via the access form.

Event callbacks (sample)

Common events: order created, status changed, settlement completed, reconciliation ready.

{
  "event": "order.status_changed",
  "timestamp": "2026-03-31T00:00:00Z",
  "data": {
    "order_id": "ord_01H…",
    "from": "pending",
    "to": "settled"
  }
}

Errors & retry

A consistent error object for alerting and debugging. Idempotency keys are supported in beta.

{
  "error": {
    "code": "rate_limited",
    "message": "Too many requests",
    "retry_after_ms": 1200
  }
}

Changelog

2026-03-31

Added callback samples and error shapes; refined private beta access flow.

2026-03-10

Updated console permission model draft and export guidance.

2026-02-24

Initialized documentation skeleton (private beta).

Status

Current: Operational (sample). Email notifications available in beta.

Last 30 days: 99.9% uptime (example)
Incidents: 0