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. Keys do not expire by default, support an optional enforced expiration, and can be rotated from the dashboard at any time.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 Every mutating request (
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:POST and PATCH) also requires an Idempotency-Key header. Replaying the same key returns the original result instead of re-executing.When a request returns
401, the token has expired. Exchange your key for a fresh one and retry. If POST /auth/token returns 429, the endpoint is rate-limited: back off before retrying using the Retry-After header.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, and request the Store the
endorsements the customer needs.cst_ ID; you pass it to every wallet, quote, and transaction. Each endorsement tracks its own status in SCREAMING_CASE and must reach ACTIVE before its capability unlocks. PII fields (birthDate, residentialAddress, ipAddress, identifyingInformation) are write-only: OMS accepts them but never returns them.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.
Provision a wallet
Create a custodial wallet for the customer. The path carries the customer ID; the body names the The
asset and chain to hold. OMS derives the on-chain address and manages the keys, with no wallet SDK or user signing.address is the on-chain address. The wlt_ ID is what you pass as the source or destination in quotes and transactions. Read the current balance with GET /wallets/{walletId}/balance.Run your first transaction
The cash-in flow is the quickest path for your first run: it needs no external account. The bank transfer flow shows the standard quote-to-transaction pattern for fiat payouts.
- 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 one 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 Pass an empty
See Webhook events for the envelope and the full catalog.
GET /transactions/{transactionId} instead, but webhooks are strongly recommended for production.Register an endpoint with POST /webhooks (or in the OMS Dashboard under Webhooks). OMS returns a signing secret with the whsec_ prefix once in the create response, so store it immediately.events array (or ["*"] / ["ALL"]) to subscribe to every event, or list specific event names to filter. Manage endpoints with GET /webhooks, PATCH /webhooks/{id} (set enabled: false to pause), and DELETE /webhooks/{id}. Every event carries the full resource object under payload, so you rarely need to poll for additional data.Some events you will see early on:| Event | Fires when |
|---|---|
transaction.fiatToCrypto.completed | A fiat-funded transaction delivered crypto to the destination |
transaction.cryptoToFiat.completed | A payout from a wallet delivered fiat to the destination |
cashIn.completed | A cash deposit was received and converted |
externalAccount.verified | A registered bank account passed validation and is usable on quotes |
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.