Wallet Verse API integration services (DeFi / OpenFinance)

Protocol analysis and OpenFinance-style APIs for Wallet Verse multi-chain balances, swap history, NFT and staking data

From $300 · Pay-per-call available
OpenData · OpenFinance · DeFi protocol analysis · Multi-chain wallet integration

Bring Wallet Verse multi-chain wallet data into your accounting, treasury or analytics stack

Wallet Verse: DeFi, Buy Crypto is a self-custodial multi-currency wallet supporting Bitcoin, Ethereum, Solana, TRON, XRP, Notcoin, Hamster Kombat (HMSTR) and more than 600 other tokens, with a 100+ DEX/CEX aggregator and six fiat on-ramps (MoonPay, Simplex, Banxa, Transak, Wert). The user holds the keys, but every on-chain balance, transfer, swap, NFT mint and staking position the app shows on screen can be turned into a structured, queryable feed — that is the OpenFinance angle we deliver here.

Read-only multi-chain balance API — Per-address balances across 600+ tokens and 30+ chains in a single normalized schema. Useful for treasury dashboards that need a single source of truth instead of polling ten explorers.
Swap and on-ramp history API — Buy-crypto receipts from MoonPay/Banxa/Transak plus DEX-aggregator swap orders (Uniswap, PancakeSwap, 1inch routes) with input/output legs and fees, ready for cost-basis and PnL.
NFT and staking positions — Per-wallet NFT inventory (including in-app Hamster NFTs), staking deposits and yield-farming claim history exported as time-series rows.
Cross-chain transaction stream — Webhook-driven feed of inbound and outbound transfers with confirmation depth and AML risk score, suitable for compliance monitoring.

What we deliver

Each engagement starts with a focused protocol analysis of the Wallet Verse client (app version under com.walletverse) and ends with a runnable, documented API that your downstream services can call. Below is the typical bundle; we adjust scope to match the chains and data types you actually need.

Deliverables checklist

  • OpenAPI 3.1 specification for every endpoint (balances, transactions, swaps, NFTs, staking)
  • Protocol and auth flow report (mnemonic-derived key handling, WalletConnect v2, RPC selection)
  • Runnable source code in Python (FastAPI) and Node.js (Express/Fastify) — buyer keeps the code
  • Indexer adapters for Etherscan-family explorers, Solscan, Tronscan, XRPL clio and Bitcoin Core RPC
  • Automated test suite (pytest + Jest), recorded fixtures, and Postman/Bruno collection
  • Compliance brief: FATF Travel Rule mapping, AML risk-tagging hooks, GDPR retention notes

Engagement models

  • Source code delivery from $300 — fixed-price drop of runnable code plus docs; pay after delivery once you have validated the output against your test wallets.
  • Pay-per-call hosted API — we run the indexers and key-derivation in our infrastructure, and you pay per call with no upfront fee. Useful for teams that want a one-week proof of value before committing to a self-hosted build.
  • Hybrid — start on the hosted endpoint, then migrate to your own infrastructure once volumes justify it; we hand over the same image we run.

Data available for integration

The table below maps the data surfaces visible inside Wallet Verse to concrete API outputs we can deliver. Source columns reference the in-app screen that displays the data; granularity describes how the API exposes it; typical use describes the downstream system that consumes it.

Data typeSource (in-app screen)GranularityTypical use
Multi-chain balancesPortfolio / Assets tabPer-address, per-token, USD value, 24h changeTreasury dashboards, audit reports, internal accounting
Send / receive historyAsset detail → TransactionsPer-tx hash, timestamp, counterparty, fee, statusCost-basis, AML monitoring, reconciliation
DEX swap ordersExchange / Swap tabInput + output legs, route (Uniswap/1inch/etc.), slippagePnL, tax reporting, trading analytics
Fiat on-ramp receiptsBuy Crypto flow (MoonPay, Banxa, Transak, Simplex, Wert)Fiat amount, FX rate, crypto received, provider idKYC/AML evidence, finance reconciliation
NFT inventoryNFTs / Collectibles tab and in-app Hamster chestsContract address, token id, metadata, floor priceLoyalty programs, collectible insurance, marketplaces
Staking and yield positionsEarn tabValidator/protocol, principal, accrued rewards, lock endYield reporting, treasury risk, investor statements
WalletConnect sessionsConnections / dApps tabdApp origin, chain id, last seen timestampSecurity review, threat modelling, audit trail
Price alerts and watchlistMarkets / Trending Movers (CMC, CoinGecko, TradingView feeds)Symbol, trigger price, channelNotification routing, CRM enrichment

Typical integration scenarios

1. Crypto-native accounting platform

Context: a Web3 accounting SaaS needs to onboard customers who keep their working capital in Wallet Verse rather than on a centralized exchange.

Data & API: nightly pull of /balances, /transactions and /swaps per wallet address; deduplicated against on-chain re-orgs; cost-basis fields filled from on-ramp receipts.

OpenFinance mapping: the customer signs a one-time consent message; we treat the wallet address as the equivalent of a bank account number under PSD2-style "account information service" semantics, with read-only scope.

2. AML monitoring for a regulated VASP

Context: a licensed Virtual Asset Service Provider must screen counterparty wallets when its users move funds in or out of Wallet Verse.

Data & API: webhook on every confirmed transfer; payload includes counterparty address, AML risk score (Chainalysis-style tagging hook), and Travel Rule fields when the counterparty resolves to a known VASP.

OpenFinance mapping: implements the FATF Travel Rule originator/beneficiary requirement, mapped onto IVMS 101 message fields.

3. Tax reporting for retail users

Context: a tax-prep app supports users with both centralized exchange accounts and Wallet Verse holdings.

Data & API: annualized export of /swaps, /transactions and staking /rewards as CSV and FIFO/LIFO-ready JSON; per-jurisdiction cost-basis logic applied at our layer.

OpenFinance mapping: output aligns with IRS Form 1099-DA (US) and HMRC Self Assessment crypto-asset fields (UK).

4. Treasury & portfolio dashboard for a DAO

Context: a DAO manages a multisig that also operates Wallet Verse hot wallets for ops payments and grants.

Data & API: real-time /balances snapshots; /swaps for DEX rebalancing; /nft inventory for protocol-owned collectibles. Streamed into Grafana or Dune-style dashboards.

OpenFinance mapping: follows OpenBanking-style "balance + transactions" endpoints, extended with on-chain native fields (gas, route, block height).

5. Loyalty & NFT-gated commerce

Context: a merchant grants discounts to holders of the in-app Hamster NFTs (earned by completing quests in Wallet Verse).

Data & API: read-only /nft/holdings endpoint with contract whitelist; checkout integration verifies ownership at order time.

OpenFinance mapping: treats NFT ownership as an identity assertion, with consent recorded per checkout session.

Technical implementation

The snippets below show the three most-requested endpoints. Real builds include retry, idempotency, and chain re-org handling that we cannot fit in a snippet; the delivered code contains all of these.

Balance query (multi-chain)

POST /api/v1/walletverse/balances
Content-Type: application/json
Authorization: Bearer <ACCESS_TOKEN>

{
  "wallet_id": "wv-9f3c-...-2a",
  "addresses": [
    {"chain": "ethereum",  "address": "0x9b..."},
    {"chain": "bitcoin",   "address": "bc1q..."},
    {"chain": "solana",    "address": "FZ8...j7"},
    {"chain": "tron",      "address": "TJR..."}
  ],
  "include": ["spam_filter", "usd_value", "24h_change"]
}

200 OK
{
  "as_of": "2026-05-11T09:15:04Z",
  "items": [
    {"chain":"ethereum","token":"USDT","balance":"412.55","usd":412.59},
    {"chain":"solana",  "token":"SOL", "balance":"3.4801","usd":548.12},
    {"chain":"bitcoin", "token":"BTC", "balance":"0.01902","usd":1284.73}
  ],
  "total_usd": 2245.44
}

Swap and on-ramp history

GET /api/v1/walletverse/orders?
   wallet_id=wv-9f3c-...-2a
  &from=2025-05-01
  &to=2026-05-01
  &type=swap,onramp

200 OK
{
  "orders": [
    {
      "id":"sw_8a12",
      "type":"swap",
      "venue":"1inch",
      "in":  {"token":"USDC","amount":"500.00","chain":"ethereum"},
      "out": {"token":"WETH","amount":"0.1742","chain":"ethereum"},
      "fee_usd": 1.84,
      "tx_hash":"0xab..",
      "ts":"2026-04-19T14:22:01Z"
    },
    {
      "id":"or_3f91",
      "type":"onramp",
      "provider":"MoonPay",
      "fiat":  {"currency":"EUR","amount":"200.00"},
      "crypto":{"token":"BTC","amount":"0.00295","chain":"bitcoin"},
      "kyc_ref":"mp_kyc_91x",
      "ts":"2026-03-02T08:11:44Z"
    }
  ],
  "next_cursor": "eyJv..."
}

Inbound-transfer webhook + AML hook

POST https://your-app.example/hooks/walletverse
X-Webhook-Signature: t=1715420000,v1=8d3e...
Content-Type: application/json

{
  "event":"transfer.confirmed",
  "wallet_id":"wv-9f3c-...-2a",
  "chain":"ethereum",
  "tx_hash":"0xc1...",
  "direction":"in",
  "token":"USDT",
  "amount":"1500.00",
  "counterparty":"0x77...",
  "aml": {
    "risk":"medium",
    "tags":["mixer-adjacent"],
    "provider":"chainalysis-style"
  },
  "travel_rule": {
    "originator_vasp":"unknown",
    "beneficiary_vasp":"self-custody"
  }
}

Compliance & privacy

Regulatory frame

Because Wallet Verse is self-custodial, private keys never leave the user device and we never touch them. The data we expose is either user-consented (signed by the wallet) or publicly available on-chain. Where the buyer is itself a regulated VASP, we map outputs to the FATF Travel Rule recommendations for virtual assets, including IVMS 101 originator/beneficiary fields.

In the United States, regulated counterparties using the API can integrate it with their existing BSA/FinCEN MSB program and IRS Form 1099-DA reporting. In the EU and UK the same data feeds MiCA reporting obligations and HMRC self-assessment.

Privacy controls

  • Per-call consent token signed by the owning wallet (EIP-4361 / "Sign-In With Ethereum" style)
  • Configurable data retention windows (7 / 30 / 365 days) with hard delete
  • Address-level pseudonymization in logs by default
  • GDPR Article 17 ("right to erasure") workflow built into the admin console
  • Optional zero-knowledge KYC plug-in for proving "verified user" without transmitting identity documents

Data flow / architecture

A typical Wallet Verse integration follows a simple four-stage pipeline:

  1. Client (Wallet Verse app or address list) — user grants a signed consent and provides the set of addresses they want exposed.
  2. Indexer / RPC adapter — chain-specific workers pull data from public RPC nodes and indexers (Etherscan, Solscan, Tronscan, XRPL clio, Bitcoin Core RPC) and normalize it into a single schema.
  3. Storage — append-only event store for transactions and swaps; daily snapshots for balances; cold storage for fiat-receipt PDFs when KYC evidence is needed.
  4. API / Webhooks — REST endpoints for pull, signed webhooks for push; outbound calls to your accounting, AML or analytics stack.

The pipeline is stateless at the API layer and horizontally scalable; the indexer layer is the only stateful part and is sharded by chain to keep one slow chain from blocking the others.

Market positioning & user profile

Wallet Verse positions itself as a beginner-friendly self-custodial wallet with deep multi-chain coverage and a built-in DEX aggregator. Its 2024–2025 integrations of Notcoin (NOT) and Hamster Kombat (HMSTR) — the two breakout Telegram-gaming tokens — pulled in a younger, mobile-first, mostly retail audience across Eastern Europe, the CIS region, Southeast Asia and Latin America. The 2025 addition of NFT Hamster quest chests and a six-provider fiat on-ramp expanded the funnel from "wallet for power users" to "first wallet for new buyers".

The B2B opportunity therefore sits in three places: (a) accounting and tax tools serving these retail users, (b) AML and Travel-Rule tooling for VASPs that interact with the wallet, and (c) loyalty and commerce platforms that want to recognize on-chain assets — including the in-app Hamster NFTs — at checkout. Both Android and iOS clients are in scope.

App screenshots

The screens below show the data surfaces we wrap into APIs — portfolio, asset detail, swap, NFT and earn views. Click any thumbnail to enlarge.

Wallet Verse screenshot 1 Wallet Verse screenshot 2 Wallet Verse screenshot 3 Wallet Verse screenshot 4 Wallet Verse screenshot 5 Wallet Verse screenshot 6 Wallet Verse screenshot 7 Wallet Verse screenshot 8

Similar apps & the integration landscape

Teams that integrate Wallet Verse usually want a coherent view across several other self-custodial wallets too. The apps below sit in the same multi-chain, mobile-first category and surface comparable data — listing them here is editorial context, not a ranking.

MetaMask

The default EVM gateway with about 30 million monthly active users. Holds balances, swap routes and dApp interaction history; users who also work with MetaMask often need a unified Ethereum/L2 transaction export across both wallets.

Trust Wallet

Non-custodial wallet with 220M+ downloads and 110+ native chains. Comparable balance and swap-history surfaces; integrations frequently consolidate Trust Wallet and Wallet Verse data into one accounting feed.

Phantom Wallet

Originally Solana-focused, expanded to Ethereum and Bitcoin in 2025. Holds SOL balances, SPL token swaps and NFT positions; relevant when teams need to merge Solana data with Wallet Verse's multi-chain feed.

Bitget Wallet

Non-custodial wallet covering 130+ blockchains and millions of tokens. Holds DEX swap data and on-ramp receipts; similar shape to Wallet Verse for cross-chain reconciliation pipelines.

Exodus

Desktop-first multi-chain wallet with strong portfolio reporting. Holds balances across BTC, ETH, SOL and more; users often want Exodus and Wallet Verse data normalized into the same schema for tax season.

THORWallet

DEX-first wallet specializing in native cross-chain swaps without bridges. Holds THORChain swap orders that complement Wallet Verse's aggregator data for users who route between BTC and EVM assets.

Zengo

Keyless self-custodial wallet using MPC instead of a seed phrase. Holds the same balance and transaction surfaces as Wallet Verse, but with a distinct recovery model — useful context for compliance reviews.

Coinbase Wallet

Self-custodial companion to the Coinbase exchange. Holds balances, swaps and NFT data; integration teams frequently combine Coinbase Wallet exports with Wallet Verse exports for users who split funds between the two.

Rabby Wallet

EVM-focused wallet with pre-transaction simulation. Holds approval and dApp-interaction records; pairs well with Wallet Verse data when AML teams need a full picture of EVM activity.

SafePal

Hybrid software + hardware wallet line. Holds the same multi-chain balance and transaction data; relevant because Wallet Verse has flagged SafePal hardware connect support as a coming feature.

About OpenFinance Lab

We are an independent studio focused on fintech and open-data API integration. Our engineers come from cryptocurrency exchanges, payment processors, mobile-app reverse engineering teams, and cloud infrastructure providers. We understand the data shapes of self-custodial wallets, the constraints of FATF/MiCA/BSA regulations, and the practical limits of public chain indexers — and we ship end-to-end financial APIs under those constraints.

  • Self-custodial wallets, DEX aggregators, on-ramp providers and cross-border crypto rails
  • Enterprise API gateways, signing services and security reviews
  • Custom Python (FastAPI), Node.js, Go and Rust SDKs with full test harnesses
  • Full pipeline: protocol analysis → build → validation → compliance brief
  • Source code delivery from $300 — runnable code and full documentation; pay after delivery upon satisfaction
  • Pay-per-call hosted API — pay only per call, no upfront cost; ideal for usage-based pricing

Contact

For quotes, scope reviews, or to submit your target app and integration requirements, open our contact page:

Contact page

Typical reply time: one business day. We sign NDAs before any protocol-level discussion.

Engagement workflow

  1. Scope confirmation: which chains, which data surfaces (balances, swaps, NFTs, staking), which downstream system.
  2. Protocol analysis of the Wallet Verse client and indexer selection (2–5 business days).
  3. Build, internal validation against test wallets and reference fixtures (3–8 business days).
  4. Docs, OpenAPI spec, sample collection and test cases (1–2 business days).
  5. Typical first delivery in 5–15 business days; third-party indexer approvals may extend the window.

FAQ

What data does Wallet Verse hold that can be integrated?

On-device key material stays with the user, but the app surfaces structured data we can normalize into APIs: multi-chain balances across 600+ tokens, send/receive history, DEX swap orders, fiat on-ramp receipts, NFT holdings, staking and yield-farming positions, portfolio valuations, price alerts and read-only WalletConnect session metadata.

How long does delivery take?

Usually 5–12 business days for a first API drop covering one chain family plus balances and swap history. Adding more chains, NFT enrichment, or staking aggregation typically adds another 3–7 business days each.

How do you handle compliance for a self-custodial DeFi wallet?

Private keys never leave the user device. We work from explicit user consent and from documented public chain data (RPC nodes, block explorers, indexers). Outputs follow FATF Travel Rule fields, AML transaction-risk tagging, and GDPR data-minimization principles.

Can the API cover both Bitcoin and EVM chains?

Yes. We unify UTXO chains (BTC, LTC, BCH, DOGE) and EVM/L2 chains (Ethereum, BNB Chain, Polygon, Arbitrum, Base, Avalanche C-Chain) plus Solana, TRON, XRPL and Cosmos under a single normalized schema, so your downstream system sees one balance object and one transaction object regardless of chain.
📱 Original app overview (appendix)

Wallet Verse: DeFi, Buy Crypto (package id com.walletverse) is a free self-custodial DeFi crypto wallet for Android and iOS. It supports Bitcoin (BTC), Notcoin (NOT), Ethereum (ETH), USDT, Binance Coin (BNB), XRP, DOGE, Solana (SOL), TRON (TRX) and more than 600 other tokens and blockchains.

  • Self-custodial security: private keys are encrypted on-device; only the user can access them.
  • Send, receive, store, trade: standard wallet flows for all supported tokens.
  • Buy crypto with fiat: aggregates six on-ramp providers — MoonPay, Simplex, Banxa, Transak, Wert — supporting USD, EUR, GBP, CAD, AUD, AED, ARS, KZT, INR and more.
  • DEX & CEX aggregator: 100+ venues including Uniswap, PancakeSwap, Binance, Coinbase Pro and 1inch, with 10,000+ trading pairs.
  • Multi-wallet: create as many accounts and addresses as needed with full multi-currency support.
  • WalletConnect & dApps aggregator: connect to a wide range of decentralized applications.
  • Crypto news: Cointelegraph, Coindesk, Decrypto, The Block and CryptoPanic feeds.
  • NFT support: hold, view and manage non-fungible tokens, including the in-app Hamster NFTs earned by completing quests.
  • Portfolio tracking and price alerts: with Trending Movers and market data from CoinMarketCap, CoinGecko and TradingView.
  • Staking and yield farming: earn crypto on supported assets directly inside the app.
  • Earn Stars and NFT Hamsters: complete simple quests to open chests with NFT Hamsters that reduce transaction fees.
  • AML processes: integrated Anti-Money Laundering detection for fraud and illicit-activity prevention.
  • Coming soon: sell crypto, bridges aggregator, Bitcoin Lightning, hardware wallet connect (Ledger, Trezor, SafePal), mass payment, limit orders, plus support for zkSync Era, BRC20, Metaverse, AI and GameFi categories.
  • Token standards supported: ERC20, TRC20, BEP20 (BSC), BEP2 (BNB), C-Chain (Avalanche), MATIC (Polygon), SOL (Solana).

Last updated: 2026-05-11