MyTonWallet API integration (TON / TRON / Solana OpenData)

Protocol analysis and production-ready APIs for MyTonWallet on-chain data, TON Connect sessions, staking rewards and Telegram Gifts metadata.

From $300 · Pay-per-call available
OpenData · OpenFinance · TON Connect · Multi-chain wallet

Plug MyTonWallet on-chain data into your stack — TON, TRON, Solana and beyond

MyTonWallet is the most feature-rich self-custodial wallet on The Open Network, and as of 2025 also covers TRON, Solana, Ethereum, Base, BNB, Polygon, Arbitrum, Avalanche, Monad and Hyperliquid. We deliver a unified MyTonWallet API export layer for transaction history, jetton and SPL token balances, native TON staking yield, NFT and Telegram Gifts inventories, plus TON Connect session events.

Multi-chain balance export — Read TON, TRC-20, SPL and EVM token holdings tied to one wallet identity, normalized to a single JSON schema for accounting and treasury reporting.
Transaction history API — Paged jetton, USDT-TRC20, Solana SPL and TON Connect transfer logs with timestamps, fees, memos and counterparties for reconciliation pipelines.
Staking and rewards — Native TON nominator-pool and liquid-staking yields, validator metadata and reward accruals exported as a daily statement for tax reports.
TON Connect events — Session lifecycle, dApp authorization records, signed payloads and disconnects streamed via webhook for risk and audit dashboards.

Data available for integration

The table below summarises the MyTonWallet data surfaces our integrations expose. Each row maps a data type to the wallet feature where it originates, the typical granularity at delivery, and a real downstream use case for OpenData / OpenFinance pipelines.

Data typeSource feature in MyTonWalletGranularityTypical use
TON / TRON / Solana balancesMain asset list, multichain aggregatorPer address, per token, near real-timeTreasury dashboards, audit-of-funds reports, accounting reconciliation
Jetton and SPL transfersActivity tab, blockchain explorer switchPer transaction, with memo and fee fieldsTax reporting, AML transaction monitoring, P&L attribution
Native TON stakingEarn / staking screen, nominator poolsDaily reward accrual per validatorYield reporting, fund performance attribution, KYT scoring
NFT & Telegram GiftsCollectibles tab, TON Gifts inventoryPer item, with TON DNS resolutionLoyalty programs, on-chain identity scoring, fan engagement analytics
Cross-chain swapsBuilt-in DEX / cross-chain swap aggregatorPer swap leg, with quoted vs filled rateSlippage analysis, market-making feedback, treasury rebalancing
TON Connect sessionsdApp connection manager, authorization logPer session, signed-payload metadataRisk audits, anti-phishing review, app-side conversion analytics
Address book & anti-spamAddress book, anti-spam filterPer contact, with tags and last-used timeCounterparty graph enrichment, AML high-risk peer detection

Typical integration scenarios

1 · Multi-chain accounting export

A web3 fund holds operational balances in MyTonWallet across TON, TRC-20 USDT and Solana SPL stablecoins. We expose /wallet/{addr}/transactions and /wallet/{addr}/balances normalized to ISO 4217-style ledger rows. The result feeds directly into NetSuite or QuickBooks via the firm's existing CSV import job, replacing manual screenshots from the Activity tab.

2 · Staking-yield statement for tax

An EU resident uses native TON staking through MyTonWallet's nominator pools. Our staking statement API consolidates each daily reward, validator address, and effective APY into a single PDF and JSON for tax filing. Field naming aligns with the OECD Crypto-Asset Reporting Framework (CARF), so the same export plugs into Koinly, CoinTracking or a private accountant.

3 · Telegram Mini-App KYT layer

Telegram Mini Apps must use TON Connect to interact with wallets. We capture the connected MyTonWallet address, signed connect proof, and downstream transfer events through a webhook bridge. The mini-app backend then runs Know-Your-Transaction (KYT) scoring against on-chain risk lists before greenlighting payments — a pattern increasingly required under MiCA Travel Rule guidance.

4 · NFT & Telegram Gifts loyalty graph

A consumer brand running a Telegram channel rewards holders of specific Telegram Gifts and TON DNS names. Our integration walks the Collectibles tab, resolves .ton domains, and emits a daily Parquet file of qualifying members with token ids, mint dates and last transfer block — ready for marketing automation.

5 · Soundbox-style merchant alerts

For merchants accepting TON or USDT-TRC20 via a MyTonWallet address, we surface inbound transfers as an SSE / webhook stream within seconds. Each event carries amount, jetton master address, payer address and a memo decoded from the body cell — enough to trigger a thermal-printer receipt or a POS confirmation tone identical to the in-app notification.

Technical implementation

TON Connect bridge handshake

// Pseudocode: open a TON Connect session against MyTonWallet
POST /api/v1/mytonwallet/connect
Content-Type: application/json

{
  "manifestUrl": "https://example.com/tonconnect-manifest.json",
  "items": ["ton_addr", "ton_proof:abcdef0123"],
  "wallet": "mytonwallet"
}

// 200 OK
{
  "session_id": "sess_8f3...",
  "universal_url": "tc://...",
  "expires_at": "2026-05-04T10:30:00Z"
}

Multi-chain transaction statement

// Pseudocode: paged transaction history (TON + TRON + Solana)
GET /api/v1/mytonwallet/wallet/{address}/transactions
  ?chains=ton,tron,solana&from=2026-04-01&to=2026-04-30
Authorization: Bearer <ACCESS_TOKEN>

{
  "items": [
    {"chain":"ton","hash":"...","jetton":"USDT","amount":"125.00","fee":"0.0042","memo":"INV-9931"},
    {"chain":"tron","txid":"...","contract":"TRC20-USDT","amount":"500.00"}
  ],
  "next_cursor": "eyJwYWdlIjoyfQ"
}

Staking-reward webhook

// Pseudocode: webhook delivered when a TON nominator-pool reward lands
POST https://your-app.example/hook/staking
X-OFL-Signature: t=1714824000,v1=...

{
  "event":"staking.reward",
  "wallet":"EQA...mytonwallet",
  "validator":"EQB...nominator",
  "reward_ton":"3.214",
  "epoch":"2026-W18",
  "tx_hash":"..."
}

// Verify HMAC, then persist to your data warehouse.

Compliance & privacy

Our MyTonWallet integrations follow the EU Markets in Crypto-Assets Regulation (MiCA), in force since 1 January 2025, including the embedded Transfer of Funds Regulation Travel Rule that requires sender and receiver information on every crypto-asset transfer. For non-EU clients we additionally align with FATF guidance and local AML/CFT rules, and we honor GDPR data-minimization on any personally identifiable metadata captured outside on-chain payloads.

Because MyTonWallet is non-custodial, we never request seed phrases or private keys. Read access is sourced from public on-chain data, signed TON Connect sessions, or backups the customer themselves provide. Audit logs, consent records and right-to-erase workflows are baked into every delivery.

Data flow / architecture

  1. Edge clients — MyTonWallet mobile/extension or a backend signer hold the user’s addresses and TON Connect session.
  2. Ingestion layer — Our connectors poll TON, TRON and Solana RPC endpoints and decode jetton / SPL transfer events.
  3. Normalization & storage — Records are mapped to a unified schema and stored in Postgres + object storage with per-tenant encryption.
  4. API / webhook output — REST endpoints, signed webhooks and batch CSV/Parquet exports feed your analytics, accounting or compliance tools.

Market positioning & user profile

MyTonWallet is the flagship self-custodial wallet for The Open Network and one of the most popular non-Telegram-native gateways into the TON ecosystem. Its installed base skews toward power users: long-term TON holders, Telegram Mini-App developers, Solana-curious traders, and operators of on-chain businesses such as TON DNS marketplaces and Telegram Gifts collectors. Geographically the audience is global, with strong penetration in Russian-speaking regions, the CIS, MENA, South-East Asia, Brazil and across the EU. Platforms covered include Android, iOS, browser extensions for Chrome and Firefox, and a desktop build — the same surface area we target for protocol analysis and integration work.

Screenshots

Click any thumbnail to enlarge. Screenshots are sourced from the official Google Play listing and illustrate the data surfaces our APIs target.

MyTonWallet screenshot 1 MyTonWallet screenshot 2 MyTonWallet screenshot 3 MyTonWallet screenshot 4 MyTonWallet screenshot 5 MyTonWallet screenshot 6 MyTonWallet screenshot 7 MyTonWallet screenshot 8 MyTonWallet screenshot 9 MyTonWallet screenshot 10

Similar apps & the broader integration landscape

Teams that connect MyTonWallet data into their stack often work with adjacent wallets in the same ecosystem. The list below frames each as part of the wider OpenData / OpenFinance landscape so unified integrations across multiple wallets are possible from one project.

Tonkeeper

The other dominant TON wallet, holds Toncoin, jettons and NFTs. Users who also work with Tonkeeper often need unified TON transaction exports across both apps.

Tonhub

Non-custodial TON wallet with strong staking flows; useful when consolidating yield reports across multiple TON wallets in a single dashboard.

Wallet.tg (Telegram Wallet)

Wallet experience embedded in Telegram itself; pairs naturally with MyTonWallet for users who hold TON in both custodial and self-custodial form.

OpenMask

Browser-extension TON wallet often called “the MetaMask of TON”. Relevant for dApp-side analytics that need to cover both extensions side by side.

Trust Wallet

Multi-chain mobile wallet with 80M+ downloads supporting 70+ chains including TON. A common companion when teams need unified TON + EVM treasury data.

Gem Wallet

Multi-chain wallet supporting TON alongside major Layer-1s; surfaces similar balance and transaction surfaces for export.

SafePal

Hybrid software/hardware wallet with TON support; integrations often combine SafePal cold storage with MyTonWallet hot-wallet activity.

Ledger Live

Companion app for Ledger hardware wallets, which can store TON via MyTonWallet itself; relevant for any unified custody report.

Phantom

Leading Solana wallet; since MyTonWallet now also covers Solana, joint Phantom + MyTonWallet exports show a single user’s SPL portfolio.

TronLink

Standard TRON wallet for TRC-20 assets; used alongside MyTonWallet to reconcile USDT-TRC20 flows with the rest of the TON treasury.

What we deliver

Deliverables checklist

  • OpenAPI / Swagger specification for every endpoint we ship
  • Protocol report covering TON Connect handshake, jetton ABI decoding and SPL token resolution
  • Runnable Python and Node.js source for balances, transactions and staking endpoints
  • Webhook reference implementation with HMAC verification samples
  • Automated test suite plus a Postman / Bruno collection
  • Compliance pack: MiCA Travel Rule mapping, GDPR data-minimization notes, retention policy template

Engagement workflow

  1. Scope confirmation: chains, data types, target environments and authorization model.
  2. Protocol analysis and API design (2–5 business days).
  3. Build, internal validation and replay tests against mainnet (3–8 business days).
  4. Documentation, sample apps and test cases (1–2 business days).
  5. Handover, optional follow-up support, and pay-per-call hosted endpoints if you prefer usage-based billing.

About OpenFinance Lab

We are an independent technical service studio focused on App interface integration and authorized API integration. Engineers on the team have shipped protocol analyses for fintech, payments, exchanges and crypto wallets across Android, iOS, browser extensions and desktop builds, and we are comfortable with the cryptography and BoC parsing that TON-side work requires.

  • Crypto wallets, exchanges, payments, banking and brokerage integrations
  • Source code delivery from $300 — runnable APIs, full docs, pay after delivery upon satisfaction
  • Pay-per-call API billing — call our hosted endpoints and only pay per request, no upfront fee
  • Coverage of TON Connect, jetton standards, SPL tokens and EVM JSON-RPC under one roof
  • Compliance-aware delivery: MiCA, GDPR, FATF Travel Rule, regional AML/CFT rules

Contact

Send us your target wallet addresses, the data scope you need, and any sandbox or sample app you want us to start from. We respond within one business day.

Open contact page

FAQ

What inputs do you need to start a MyTonWallet integration?

The wallet addresses or TON Connect session you want to read, the data you need (balances, jetton transfers, staking, NFTs, Telegram Gifts), the platform target (Android, iOS or backend), and any user authorization the project already holds for those addresses.

How long does a typical MyTonWallet integration take?

A first runnable drop covering balance and transaction APIs is usually 5–12 business days. Multi-chain coverage across TON, TRON and Solana plus staking rewards and Telegram Gifts metadata typically extends to two or three weeks.

How do you stay compliant when extracting wallet data?

We only read public on-chain data and data the user has explicitly authorized via signed TON Connect sessions or other consent flows. Data minimization, audit logs and Travel Rule alignment under MiCA and FATF guidance are built into the delivery.
📱 Original app overview (appendix)

MyTonWallet • TON Wallet (package org.mytonwallet.app) is the most feature-rich self-custodial wallet for The Open Network, with native support for TON, TRON and Solana, and additional EVM coverage including Ethereum, Base, BNB, Polygon, Arbitrum, Avalanche, Monad and Hyperliquid added during 2024 and 2025. It is open-source, has passed a CertiK audit, and ranks 14th globally on security among crypto wallets.

  • Multi-account and multi-send support; send multiple transfers in one tap
  • Native TON staking via nominator pools and liquid-staking integrations
  • Telegram Gifts and other collectibles, full NFT viewer, TON DNS / TON Sites / TON Proxy
  • Built-in DEX and cross-chain swap aggregator (≈0.875% swap fee, only network fees otherwise)
  • Ledger hardware-wallet integration; iOS Lock Screen widgets for token prices (added 2025)
  • Blockchain Explorer Switch lets users choose between Tonscan and Tonviewer (added 2025)
  • Anti-spam filters, address book, hidden balances, AI plugin support for OpenClaw, ChatGPT and Claude
  • Non-custodial: the developers cannot access user funds, browser history or other personal information

Last updated: 2026-05-04