See it live
The deposit widget runs at widget.rheon.io. Open it to walk through the deposit flow end to end.The deposit flow
A deposit moves through these steps:- Launcher - the user opens the widget
- Amount - they choose how much to deposit
- Fund with - they pick a wallet, an exchange, or a card
- Connect - they connect the chosen source
- Review - they confirm the amount and route
- Routing - Rheon settles the funds cross-chain
- Success - the USDC lands
Integrate it
There are two paths, depending on how much control you want:Deposit API
Available now. Call
quote, transaction, and status to build your own
UI. Non-custodial - the user’s wallet signs; funds never touch Rheon.Embeddable widget
Coming soon. Drop the widget into your page via iframe or SDK, themed to
your brand, with lifecycle events.
API in three calls
1
Quote
POST /deposit/quote with source, destination, and amount → a quote.2
Build
POST /deposit/transaction with the quote → the unsigned transaction (and an
approval if the token needs one).3
Sign and track
The user’s wallet signs and submits; poll
POST /deposit/status until it is
done.Knowing when a deposit lands
Credit the user only when a deposit reachesdone. Today you learn that by polling
/deposit/status; webhooks that push
the update to your backend are coming soon. See Transaction
statuses.