Protocol analysis, transaction history exports, balance sync and exchange quote APIs for the multi-chain non-custodial Cake Wallet — covering Monero, Bitcoin (Silent Payments), Litecoin (MWEB), Ethereum, Solana, Tron and USDT.
Cake Wallet is a non-custodial, open-source crypto wallet used by more than 1.75 million people worldwide, with market-leading Monero support and the first mobile implementation of Bitcoin Silent Payments and Litecoin MWEB. We build compliant OpenData and OpenFinance style integrations on top of it so accounting platforms, treasury tools, tax services and analytics dashboards can ingest wallet activity safely and at scale.
Every module is shipped as a runnable reference implementation (Python or Node.js) plus an OpenAPI spec, so your team can either self-host or consume our hosted endpoints under pay-per-call pricing. All modules speak the same wallet abstraction and can be combined into a single OpenFinance-style gateway in front of Cake Wallet.
Pulls per-asset ledger entries (tx_id, block_height, timestamp_utc, direction, amount, fee, asset, memo, counterparty_address, confirmations). Concrete use: nightly export into a QuickBooks or Xero staging table for reconciliation against invoices.
Read-only sync of wallet and sub-account balances, including pending vs. confirmed split, locked UTXOs and Monero view-key derived balances. Concrete use: real-time treasury dashboards that compute total crypto holdings across multiple Cake Wallet seeds.
Background scanner that accepts a Bitcoin SP scan key or an LTC MWEB view key and returns only the transactions belonging to that wallet. Concrete use: compliant audit trail for privacy-preserving payroll without exposing the full blockchain graph.
Wraps the ChangeNOW / SimpleSwap / Trocador provider layer that Cake Wallet integrates, exposing a unified /quote and /swap endpoint with rate, slippage, min/max, and on-chain settlement. Concrete use: hedging bot that rebalances from XMR into USDT when thresholds are crossed.
Surfaces Cake Pay purchases (merchant, brand, denomination, fiat_amount, settlement_asset) as a line-item stream. Concrete use: expense categorization in SaaS accounting tools, or cashback calculation for corporate travel spending.
Converts Cake Wallet's in-app background sync into push notifications (confirmed_tx, low_balance, failed_broadcast, swap_completed). Concrete use: ops alerting in Slack or PagerDuty when a cold-storage inflow is detected.
The table below summarizes the structured data that a Cake Wallet user can authorize us to expose through an OpenData / OpenFinance style gateway. Each row maps to a visible screen or feature inside the app, so clients can validate granularity end-to-end before signing off.
| Data type | Source (screen / feature) | Granularity | Typical business use |
|---|---|---|---|
| Multi-asset balance | Wallet home & account switcher | Per asset, per sub-account, confirmed vs. pending | Treasury dashboards, NAV calculation, proof-of-reserves |
| Transaction history | Transactions tab, per-asset drilldown | Tx-level: hash, timestamp, amount, fee, memo, status | Bookkeeping reconciliation, tax-lot computation, FIFO/LIFO |
| Silent Payments activity | Bitcoin SP receive & scan flows | Per SP-derived address, with scan-key authorization | Privacy-preserving payroll, donor receipts, audit trails |
| Litecoin MWEB balances | LTC wallet (MWEB toggle) | View-key derived confidential outputs | Compliant reporting on confidential LTC holdings |
| Swap / exchange orders | Exchange tab (ChangeNOW / SimpleSwap / Trocador) | Quote, provider, in/out asset, pair rate, settlement tx | Realized-gain calc, spread analytics, rebalancing bots |
| Cake Pay purchases | Cake Pay gift cards & merchants | Merchant, brand, denomination, fiat amount, asset paid | Expense categorization, cashback, corporate card replacement |
| Address book & payment IDs | Contacts, ENS / Unstoppable Domains / FIO resolvers | Handle → address mapping, per network | CRM enrichment, counterparty KYC linkage |
| Hardware wallet & seed metadata | Ledger pairing, Cupcake airgap | Device type, derivation path, signer role (no private keys) | Custody policy enforcement, internal control reviews |
Business context: a freelance contractor is paid in XMR and USDT through Cake Wallet and needs to file quarterly taxes. Data / API: Transaction history API + Exchange quote API are called nightly; outputs are pushed into a Koinly or CoinTracker-compatible CSV. OpenFinance mapping: the wallet becomes a self-reporting "account" whose normalized ledger feeds downstream tax engines just like an open-banking account statement.
Business context: a small DeFi studio holds operating funds in XMR (payroll buffer), BTC (long-term), and USDT (float). Data / API: Balance & account sync plus the SP/MWEB scanner; results roll up into a Grafana dashboard with alerts for sub-threshold BTC reserves. OpenFinance mapping: treats the non-custodial wallet as a bookable treasury account with daily NAV, parallel to bank OpenBanking feeds.
Business context: an e-commerce brand accepts crypto via Cake Pay gift cards and wants per-SKU reconciliation. Data / API: Cake Pay merchant feed + Transaction history API cross-joined on order_id. OpenFinance mapping: the output is a PSP-style settlement report (payout date, FX rate, net/gross, fees) consumable by Shopify or WooCommerce connectors.
Business context: a licensed exchange offers Cake Wallet as a self-custody alternative and must apply Travel Rule / MiCA controls when users move funds in/out. Data / API: Webhook relay for confirmed_tx events plus sanctions-screening hooks (Scorechain / Chainalysis) invoked before signing. OpenFinance mapping: the event stream feeds AML case-management in the same shape as bank-wire alerts.
Business context: an OTC desk wants to rebalance wallet inventory when XMR/BTC moves beyond a corridor. Data / API: Exchange quote API polled every 30 s; once a threshold is crossed, the swap is executed through Cake Wallet's integrated provider and logged via the webhook relay. OpenFinance mapping: mirrors FX execution reports used by open-banking payment initiation services (PISP).
The snippets below show the shape of the APIs we typically deliver. Actual endpoints, auth headers and rate-limit budgets are tuned to your deployment (self-hosted, VPC peering, or managed). All examples assume the integration has been explicitly authorized by the wallet holder.
POST /api/v1/cakewallet/session
Content-Type: application/json
X-Client-Id: studio-demo
Authorization: Bearer <PLATFORM_TOKEN>
{
"wallet_handle": "user-9ab2",
"networks": ["XMR", "BTC", "LTC", "ETH", "USDT_TRC20"],
"scan_keys": {
"BTC_SP": "sp1q...scankey...",
"LTC_MWEB": "ltcmweb1q...viewkey..."
},
"consent_id": "c_20260418_7788",
"ttl_minutes": 240
}
// 200 OK
{
"session_id": "sess_01HX...",
"expires_at": "2026-04-20T18:00:00Z",
"granted_scopes": ["balance.read", "tx.read", "swap.read", "cakepay.read"]
}
GET /api/v1/cakewallet/tx?asset=XMR&from=2026-01-01&to=2026-03-31&cursor=
Authorization: Bearer <SESSION_TOKEN>
// 200 OK
{
"items": [
{
"tx_id": "a7c2...",
"asset": "XMR",
"direction": "in",
"amount": "3.215000000000",
"fee": "0.000012000000",
"timestamp_utc": "2026-03-14T09:41:22Z",
"confirmations": 82,
"memo": "invoice-2026-03-14",
"counterparty": null,
"status": "confirmed"
}
],
"next_cursor": "eyJvZmZzZXQiOjUw",
"schema_version": "of.tx.v1"
}
POST /api/v1/cakewallet/webhooks
Authorization: Bearer <PLATFORM_TOKEN>
{
"url": "https://ops.example.com/hooks/cakewallet",
"events": [
"tx.confirmed",
"swap.completed",
"cakepay.purchased",
"balance.low"
],
"secret": "whsec_..."
}
// Delivered event (HMAC-SHA256 signed)
{
"event": "swap.completed",
"session_id": "sess_01HX...",
"provider": "changenow",
"from_asset": "XMR",
"to_asset": "USDT_TRC20",
"from_amount": "5.00",
"to_amount": "1034.21",
"settlement_tx": "0x9c1f...",
"occurred_at": "2026-04-19T12:07:44Z"
}
Cake Wallet itself is non-custodial and open source, which means compliance responsibility sits with the integrator. Our delivery aligns with the EU Markets in Crypto-Assets (MiCA) regulation (in force since 30 December 2024) and the FATF Travel Rule as implemented by the EU Transfer of Funds Regulation. In the EU we also cover GDPR data-minimization and consent logging; US deployments can be extended with FinCEN reporting hooks.
Monero view keys, Bitcoin Silent Payments scan keys and Litecoin MWEB view keys are only used server-side for the minimum window needed to produce a report, then rotated. No private spend keys are ever transmitted. Native Tor egress, optional self-hosted nodes and hashed counterparty identifiers protect both the user and the integrator.
A typical deployment looks like this:
of.tx.v1, of.balance.v1) and stored in an encrypted Postgres + object store.Cake Wallet is positioned as the most accessible self-custody experience for privacy-first users, with more than 1.75 million downloads and cross-platform availability on iOS, Android, macOS, Windows and Linux since its 2024 desktop expansion. Typical users are privacy-conscious retail holders, Monero-native communities, remote freelancers paid in crypto, small DAOs managing operating capital, and merchants onboarding crypto payments through Cake Pay. The user base skews global, with strong adoption in the Americas, Europe and emerging markets where access to compliant banking rails is limited. B2B interest is growing among accounting SaaS, tax services, OTC desks and regulated VASPs who need a unified way to read Cake Wallet activity.
Click any thumbnail to see a larger version. These screens show the main flows our APIs map to: multi-asset home, transaction history, send/receive, exchange, and Cake Pay.
Teams that integrate Cake Wallet data usually also want to cover other non-custodial or privacy-oriented wallets. The apps below belong to the same ecosystem; we can extend the same OpenFinance abstraction to them, which is useful when an organization holds assets across several tools.
A Monero-only sibling app from the Cake team. Holds XMR-specific transaction and sub-address data; users often need unified XMR statements across both apps.
Self-custodial multi-chain wallet with 1,000+ assets and integrated swaps. Typical integration need: merging Exodus and Cake Wallet activity into a single tax report.
Mobile-first multi-chain wallet with broad EVM and Solana support. Relevant when users mix DeFi activity (Trust) with privacy-coin holdings (Cake).
Non-custodial wallet supporting 300+ cryptocurrencies across 50+ chains with staking. Clients often ask for unified staking-yield and transaction exports.
Open-source Bitcoin and Lightning wallet. Pairs well with Cake Wallet for users who run Bitcoin on Lightning alongside Monero-based privacy flows.
Open-source privacy-preserving wallet covering Monero, Bitcoin, Firo, Epic Cash and more. Similar data shape to Cake Wallet, natural target for shared schemas.
Privacy-focused Bitcoin desktop wallet using WabiSabi coinjoins and Tor. Integration landscape: reconciling coinjoin outputs with Silent Payments flows.
Long-standing lightweight Bitcoin wallet with strong scripting and hardware-wallet support. Commonly used alongside Cake Wallet on the desktop side.
Bitcoin privacy wallet known for Whirlpool and PayNyms. Useful reference when normalizing privacy metadata across several Bitcoin tooling chains.
Hardware-wallet companion app from SatoshiLabs. Many Cake Wallet users also rely on Trezor or Ledger; unified signer metadata is a common ask.
Source-code delivery from $300 — we hand over runnable API source code and documentation; you pay after delivery upon satisfaction. Ideal for teams that want to operate and audit the integration themselves.
Pay-per-call API billing — you access our hosted Cake Wallet gateway and pay only for the calls you make, with no upfront fee. Ideal for pilots, seasonal workloads, or teams that prefer usage-based pricing.
We are an independent technical studio specializing in App interface integration and authorized API integration. Our engineers come from payments, digital banking, Web3 infrastructure and protocol analysis backgrounds. Since 2018 we have delivered interface implementations for fintech, crypto, e-commerce and travel clients across Europe, North America, South-East Asia and the Middle East.
Share your Cake Wallet integration requirements and we will come back within one business day with a scope, timeline and quote.
NDAs available on request. We do not accept engagements that require bypassing user consent, custodial controls or local regulation.
What do you need from us?
How long does delivery take?
How do you handle compliance?
Can you integrate other wallets too?
Cake Wallet lets you easily and safely store, send, receive, and exchange your cryptocurrency. Since 2018, the team has focused on making the hard things easy: intuitive privacy tools, cross-chain swaps, buying and selling crypto, and powerful hardware-wallet support, all in a single app.
Cake Wallet is a trademark of its respective owner. This page describes third-party technical integration services and is not affiliated with or endorsed by the Cake Wallet team.