Request access and authenticate
OMS is in early access. Start by requesting access from the dashboard.Once approved, open the OMS Dashboard and navigate to API Keys. Generate a new key and store the secret immediately, it is shown only once.You do not send the API key directly on requests. Exchange the key and secret for a short-lived bearer token at The token is valid for 60 minutes. Send the
Request OMS access
Submit your details to get sandbox credentials.
POST /auth/token, then send that token on every other call.accessToken as a bearer token on every other request:When a request returns
401, the token has expired. Exchange your key for a fresh one and retry.Create a customer
Every wallet, transaction, and payment route in OMS belongs to a customer record. Create one before anything else. To onboard a customer who can move USD or use cash services, send the full set of identifying fields, not just a name.Store the
cst_ ID; you pass it to every wallet, quote, and transaction. The requested endorsements appear with their status and move to ACTIVE once review passes.In sandbox, endorsements are auto-approved so you can test without a live KYC integration. Provisioning still reads the identifying fields above, so include them in sandbox too, otherwise balance and money-movement calls return
provider account not provisioned.Provision a wallet
Create a custodial wallet for the customer. The customer ID goes in the path, and the body specifies the The
asset and chain to hold. OMS derives the onchain address and manages the keys, no wallet SDK or user signing required.address is the onchain Polygon address. The wlt_ ID is what you pass as source or destination in quotes and transactions.Run your first transaction
The cash-in flow is available in the OMS API today and is the recommended path for your first run. The bank transfer flow is documented for when external accounts are available to you.
- Cash-in
- Bank transfer
Let a customer deposit physical cash at a retail location and receive USDC in their wallet.OMS returns a
depositInstructions.code valid for 1 hour. The customer presents the code at the retail location, hands over cash, and USDC lands in their wallet automatically.See the Cash-in guide for the full flow.Configure webhooks
OMS fires webhooks at every meaningful state change. You can poll
Webhook payloads include the full object, so you rarely need to poll for additional data.
GET /transactions/{id} instead, but webhooks are strongly recommended for production.Configure subscriptions in the OMS Dashboard under Webhooks, or create them via the API with POST /v0.9/webhooks and a url. The signing secret is returned once on creation, so store it immediately. Key events to subscribe to:| Event | When it fires |
|---|---|
transaction.fiatToCrypto.completed | USDC delivered to wallet |
transaction.cryptoToFiat.completed | Fiat landed in bank account |
cashIn.completed | Cash deposit processed |
transaction.*.failed | Any transaction failure |
customer.endorsement.granted | KYC approved |
What’s next
Cash-in
Full walkthrough of the cash deposit flow, including deposit code generation and retail location selection.
Bank transfers
Move money between bank accounts and wallets in both directions using ACH and card rails.
Payments overview
How OMS handles payments, stablecoin settlement, and compliant fiat access end to end.
API reference
Complete endpoint reference for all OMS resources.