Core ConceptsObjects & Terminology

Objects & Terminology

The object model in one page: who is who, which object gates which, and the vocabulary the rest of these docs assume.

The three parties

The names never blur, in the docs or in the API.

  • You are the partner. The business holding the API key. Everything you create belongs to your partner account, scoped per environment.
  • Your end users are customers. Individuals or businesses you onboard. A customer is not a login: it is a compliance identity that unlocks accounts and wallets.
  • We are Rasto. Verification and banking rails run behind our API. You never integrate with anyone else, and nothing from behind the API reaches you: every status, code, and message you see is ours.

How the objects relate

Two objects do the gating:

  • An approved endorsement for a currency unlocks that currency's virtual accounts. Any approved endorsement unlocks wallets.
  • An operation is the only door funds leave a wallet by. We prepare it, you verify and sign it.

The objects

ObjectId prefixWhat it is
Customercus_An onboarded end user, individual or business. Also the verification intake: identity data and documents go on it directly
Endorsementend_The public KYC reading per currency, endo_usd at launch. Requested explicitly. Its requirements buckets are the one channel for anything outstanding
Verificationver_One review round on the customer's single applicant. You read the endorsement instead, but the rounds are listed for history
Terms link, acceptancetos_, sig_The hosted terms flow and the receipt it produces. Terms come before the customer
Virtual accountva_A dedicated USD bank account (ach or wire) with a standing stablecoin destination
Depositdep_Money that arrived on a virtual account
Conversioncnv_The FX and fee event between deposit and delivery. Fee lines live here
Payoutpay_The on-chain delivery, carrying the tx_hash
Transactiontxn_The unified, filterable list across the whole trail. Your reconciliation surface
Walletwal_A non-custodial, chain-scoped stablecoin wallet. Balances are chain reads
Operationwop_A prepared wallet send awaiting your signature. Verify, sign, return within 30 seconds
Wallet activitywtx_One balance-affecting event at a wallet address
Webhook, eventwhk_, wev_Your registered delivery URL, and the outbound event log ordered by sequence

Who is who in your product

The model maps the same way whatever you are building. The only variable is what your customers are. What You Can Build works through four products in full.

You are buildingYour customer isA typical flow
A payroll platform paying contractorsEach contractor, an individualThe employer pays the contractor's virtual account by ACH, USDC lands in the contractor's wallet
A B2B invoicing product settling on chainEach invoicing business, KYBThe buyer wires the virtual account, USDC delivers to the seller's treasury address
A neobank with stablecoin balancesEach account holderDeposits convert into the holder's held wallet, and sends are operations your backend authorizes

Terms that trip people up

  • Partner and customer. You, and your end user. A business customer is still a customer, verified through KYB rather than KYC, never a partner.
  • Endorsement and verification. Verification is the review machinery. The endorsement is the only KYC status you read or react to. There are no verification.* webhooks.
  • Virtual account and wallet. The virtual account is fiat in: a bank account number whose arrivals convert. The wallet holds stablecoins on chain. A virtual account's destination can point into a wallet.
  • Operation and transaction. An operation is a wallet send awaiting your authorization. A transaction is a read-only row in the money-movement trail. Different objects, different lifecycles.
  • Rail and corridor. A rail is how fiat moves (ach, wire). A corridor is a supported fiat, asset, and chain combination. Discover both from GET /api/corridors rather than hard-coding them.
  • kind, decimal strings, bps. Discriminators are always named kind. Money values are decimal strings ("250.00"). Rates are basis points, never percent.