USDC stablecoin savings, yield-strategy data, deposit and balance APIs, MoonPay virtual-account flows — turned into compliant, production-ready integrations.
Axal (operated by Lockbox Technologies, Inc., backed by a16z CSX and CMT Digital) is a non-custodial USDC savings app that advertises 6–10% APY by routing user deposits across Morpho, Euler, Pendle, and Aave. The app onboards via Apple Pay, ACH bank transfer, or direct USDC, and uses MoonPay-Iron virtual accounts to convert fiat to stablecoins. We deliver authorized API integrations that surface this data — balances, deposits, allocations, and earned yield — for accounting, treasury, dashboards, and compliance reporting.
Mirror Axal's mobile authorization to bind a user under your tenant. Each Axal deposit is protected by TEE-enforced signing policies and batched execution; our integration exposes a stable account ID, a smart-account address, and a refreshable session token so your backend can re-auth without prompting the user every time.
Three on-ramp paths: Apple Pay (in-app), ACH bank transfer (US accounts), and direct USDC transfer to the user's MoonPay-Iron virtual account. We expose a unified deposits resource so accounting systems do not need to know the underlying rail — only that funds have settled and have been routed to a yield strategy.
Per-user allocation by protocol (Morpho lending vaults, Euler markets, Pendle PT/YT positions, Aave V3 supplies), with per-leg APY, vault address, and last-rebalance timestamp — enabling reconciliation, performance attribution, and risk dashboards on the user's behalf.
Date-ranged transaction statements for deposits, withdrawals, rebalances, and earned yield. JSON for engineering, CSV/Excel for finance, PDF for end-user statements; field-level documentation included for direct mapping into QuickBooks, NetSuite, or in-house ledgers.
Lifecycle states for a withdrawal request: queued, signed by smart account, on-chain settled, off-ramp initiated, fiat received. Each state ships a webhook with the on-chain transaction hash and the MoonPay reference, so support and operations teams can trace funds end-to-end.
Axal's automation engine reallocates capital in real time across DeFi protocols. We surface those rebalances as discrete events — old leg, new leg, amount, gas covered, expected APY delta — so risk systems can flag concentration changes and treasury teams can track yield drift.
| Data type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| USDC balance | Home / Dashboard | Per smart account, real time | Treasury sync, NAV reporting |
| Accrued yield | Earnings panel | Daily & cumulative, per strategy leg | Performance attribution, P&L |
| Strategy allocation | Strategies tab | Per protocol (Morpho / Euler / Pendle / Aave) with weight % | Risk control, exposure limits |
| Deposit ledger | Deposit flow (Apple Pay / ACH / USDC) | Per event with rail, amount, timestamp | AML monitoring, accounting |
| Withdrawal lifecycle | Withdraw flow | State machine + on-chain tx hash | Customer support, audit trail |
| Rebalance events | Automation engine | Per rebalance, amount moved, legs | Risk dashboards, yield drift alerts |
| MoonPay virtual account | Onboarding / deposit | Account reference + routing metadata | Reconciliation against banking partner |
| User profile metadata | Settings / KYC | Country, tier, risk profile (where authorized) | Compliance segmentation |
A neobank or crypto wallet wants to surface "your Axal balance" inside its own app. Our integration polls the balance and earnings endpoints under user-authorized OAuth, keeps a server-side mirror, and emits a daily NAV snapshot — mapping cleanly onto OpenFinance account-aggregation patterns familiar from PSD2-style flows.
An accounting firm onboards US clients earning USDC yield via Axal. The statement API delivers per-day accrued yield, deposit/withdrawal events with on-chain references, and rebalance gas costs in one CSV — ready to feed into Form 1099 prep, Schedule D, or staking-income workflows.
A small business uses Axal to park idle USDC. Their CFO needs to confirm exposure stays within policy: at most 40% Morpho, 25% Euler, 20% Pendle, 15% Aave. The allocation snapshot endpoint plus rebalance webhook drives a Slack alert when the rebalancer moves outside policy bands.
The 2025 GENIUS Act and the FinCEN/OFAC joint proposed rule (April 2026) extend BSA-style obligations to stablecoin issuers and downstream platforms. Our compliance bundle ships authorized deposit/withdrawal logs, KYC tier metadata, and source-of-funds events for SAR/CTR-style reporting.
A power user holds USDC across Axal, Nook, YieldClub, Coinbase and Nexo. Our integration normalises Axal's strategy data into a common schema (balance, APY, protocol leg, lockup, on-ramp) so a single dashboard can compare realized yield across the whole stablecoin savings landscape.
// 1. Bind a user-authorized session
POST /api/v1/axal/auth/bind
Content-Type: application/json
Authorization: Bearer <PARTNER_API_KEY>
{
"external_user_id": "u_8821",
"scope": ["balance.read", "statements.read", "events.subscribe"]
}
// Response
{
"session_id": "sess_a1b2",
"smart_account": "0xAxalSmartAccountAddr...",
"expires_at": "2026-05-28T10:30:00Z"
}
// 2. Read live balance + yield
GET /api/v1/axal/balance
Authorization: Bearer <SESSION_TOKEN>
// Response
{
"usdc_balance": "1284.55",
"accrued_yield_24h": "0.31",
"blended_apy": 0.0742,
"strategies": [
{"protocol": "Morpho", "weight": 0.42, "apy": 0.078},
{"protocol": "Euler", "weight": 0.23, "apy": 0.069},
{"protocol": "Pendle", "weight": 0.20, "apy": 0.081},
{"protocol": "Aave", "weight": 0.15, "apy": 0.061}
]
}
POST /api/v1/axal/statement
Authorization: Bearer <SESSION_TOKEN>
Content-Type: application/json
{
"from_date": "2026-01-01",
"to_date": "2026-03-31",
"format": "csv",
"include": ["deposit","withdrawal","rebalance","yield"]
}
// Response (csv stream excerpt)
date,type,amount_usdc,protocol,tx_hash,fiat_rail
2026-01-04,deposit,500.00,,,APPLE_PAY
2026-01-05,rebalance,500.00,Morpho,0xabc...,
2026-02-12,yield,3.41,Morpho,,
2026-03-30,withdrawal,200.00,,0xdef...,ACH
// Errors follow RFC 7807 problem+json
{ "type":"about:blank","title":"unauthorized",
"status":401,"detail":"session expired" }
// Inbound: POST /your/webhook
{
"event": "rebalance.executed",
"session_id": "sess_a1b2",
"occurred_at":"2026-04-21T08:14:55Z",
"from": {"protocol":"Aave","amount":"150.00"},
"to": {"protocol":"Pendle","amount":"150.00"},
"expected_apy_delta": 0.0114,
"tx_hash": "0x9f8a..."
}
// Verify HMAC signature header
// X-Axal-Sig: t=1714000000,v1=<hex>
// reject if drift > 5 min OR signature mismatch
Stablecoin yield platforms in the United States now operate under a dense regulatory map. The GENIUS Act, signed in July 2025, established the first federal framework for payment stablecoins and restricted issuers from paying yield directly on the holding of a stablecoin — making the design choice of platforms like Axal (yield delivered through a separate non-custodial protocol layer) regulatorily significant. The FinCEN / OFAC joint NPRM published April 2026 extends Bank Secrecy Act obligations to permitted stablecoin issuers, which downstream affects any aggregator pulling deposit and withdrawal data. The SEC Division of Corporation Finance Statement on Stablecoins (April 2025) clarified that 1:1 dollar-backed stablecoins are not securities, but yield wrappers may be, depending on structure. Our deliveries include a written compliance memo covering: lawful basis (user authorization), data minimization, GENIUS-Act-aware field selection, GDPR-style retention controls for any EU users, and an audit log suitable for SAR/CTR review.
A typical integration pipeline has four nodes:
Axal launched its mobile app on November 19, 2025 and is currently positioned for US retail savers comfortable with consumer-grade fintech but not necessarily DeFi-native. Apple Pay and ACH onboarding, MoonPay-Iron virtual accounts, and the absence of seed phrases or gas-fee prompts make it accessible to mainstream users; the 6–10% advertised APY targets people frustrated with sub-1% bank savings. The investor mix (Andreessen Horowitz CSX, CMT Digital) and the $2.5M pre-seed point to an early-stage but technically credible product. Primary platforms are iOS (live first) and Android (com.axal.android). Our integrations therefore emphasize low-friction OAuth-style binding, US-tax-friendly statement formats, and reporting flows that fit accounting firms, treasury teams, and consumer-finance dashboards.
Tap any screenshot to view a larger version.
Axal sits in a fast-growing field of stablecoin-native savings products. The apps below appear repeatedly in 2025–2026 industry coverage and share much of the underlying DeFi infrastructure (Morpho, Aave V3, Compound, Moonwell). Many of our clients ask for unified cross-platform reporting, so each entry below represents an adjacent integration our studio also supports.
Built by ex-Coinbase and Uber engineers, Nook auto-rebalances overnight across Morpho, Aave and Moonwell. Users who hold both Axal and Nook balances often need a unified APY and tax-export feed.
Advertises up to 12% APY through Morpho-powered lending with real-time compounding. Common request: normalized transaction history across YieldClub and Axal for accounting.
Stablecoin yield app emphasizing transparency on fund deployment. Maps cleanly to the same allocation-snapshot schema used for Axal strategies.
Solana-powered stablecoin savings. Integrations focus on cross-chain reconciliation when users move between EVM (Axal) and Solana (Lulo) yield positions.
Custodial USDC at ~4% APY with insured custody. Useful baseline for benchmarking realized yield against Axal's DeFi-routed APY.
CeFi platform offering up to 14–16% APY on stablecoins under tier and lock-up conditions. Integration pairs well with Axal for risk-tier dashboards.
Growth Accounts on USDC and USDT with full-reserve verification. Common client need: combined statement export across Ledn and Axal for treasury teams.
Aave Labs' iOS savings product up to 9% APY, backed by $29B+ TVL. We can normalize Aave consumer balances alongside Axal's Aave-leg exposure.
Long-running DeFi lending protocol. Useful when users move USDC directly into Compound markets outside the Axal automation layer.
European-focused EUR-to-Morpho savings (4–7% APY). Integration angle: bridging EUR-side exposure with Axal's USD-side statements for cross-currency reporting.
We are an independent technical service studio focused on App interface integration and authorized API integration. Our engineers come from banks, payment gateways, DeFi protocol teams, and cloud platforms. We ship end-to-end financial APIs under explicit authorization and compliance constraints — never via undocumented or unsafe channels.
Submit your target app and concrete requirements (data types, frequency, regions). We respond with scope, price band, and a sample contract within one business day.
For Axal: please indicate which dataset you need (balance only, statements, rebalance events, or full bundle), and whether you prefer source-code delivery or pay-per-call hosted endpoints.
What do you need from me to start?
How long does delivery take?
How do you handle compliance with the GENIUS Act and FinCEN rules?
Can you also integrate competing apps (Nook, YieldClub, Coinbase, Nexo)?
Axal: High Yield Savings (package com.axal.android, operated by Lockbox Technologies, Inc.) is a non-custodial mobile savings app that earns 6–10% APY on stablecoins through automated DeFi strategies. The mobile app launched on November 19, 2025 and mirrors the desktop Axal Yield experience.
Users deposit with Apple Pay, ACH bank transfer, or existing USDC. Behind the scenes, MoonPay's Virtual Accounts (powered by Iron) convert fiat to USDC and route it into Axal's smart yield engine, which allocates across Morpho, Euler, Pendle, and Aave. Each user deposit activates a smart account protected by TEE-enforced signing policies and batched execution — there are no gas fees, no seed phrases, and no manual rebalancing for the user.
The company is backed by Andreessen Horowitz CSX and CMT Digital ($2.5M pre-seed). Axal positions itself against traditional savings accounts (which pay near-zero interest) and against more complex DeFi yield aggregators (which require wallet management). Recent ecosystem coverage groups Axal with Nook, YieldClub, stables.money, Aave's consumer app, and Coinbase USDC Rewards as part of a new wave of consumer stablecoin savings products.
Disclaimer (per the developer): Rates are variable and subject to change. Past performance is not indicative of future results. Stablecoin yields are not FDIC insured, not bank guaranteed, and may lose value. Please carefully review all risks before investing. Copyright © 2025 Lockbox Technologies, Inc. All rights reserved.
This page is a third-party technical positioning document for the API integration studio described above. It is not affiliated with, endorsed by, or sponsored by Lockbox Technologies, Inc. or Axal.