Neverless API integration services (crypto / gold / OpenFinance)

Protocol analysis and production-ready endpoints for Neverless wallets, Strategies™ accounts and statement exports — for EU and UK retail investing stacks.

From $300 · Pay-per-call available
OpenData · OpenFinance · Crypto · Protocol analysis · MiFID

Connect Neverless balances, Strategies™ positions and trade history to your back office

Neverless is a London-based crypto and precious-metals platform launched on the App Store and Google Play in December 2023 by three former Revolut executives. As of late 2025 it has grown past 50,000 customers and processed more than $1 billion in trading volume across 800+ crypto assets, gold and silver. That activity creates a rich, machine-readable data surface — and we expose it to your stack as OpenFinance-style APIs.

Account login & OAuth bridge — Mirror the in-app authorization flow, including 2FA challenges, biometric session refresh and scoped read tokens, so your service can bind a Neverless user without storing the raw password.
Portfolio & balance APIs — Read multi-currency balances (EUR, GBP, USD plus crypto, gold and silver positions), with USD-equivalent valuation snapshots suited to dashboards and accounting reconciliation.
Statement & trade history — Paginated statements covering spot trades, leveraged positions, deposits, withdrawals and Strategies™ flows, exportable as JSON, CSV or PDF for audit packs.
Strategies™ & borrowing data — Surface market-neutral Strategies positions, unrealized return and any open borrow lines so risk and reporting teams can model real exposure.

What we deliver

Deliverables checklist

  • OpenAPI / Swagger spec for every endpoint we expose
  • Protocol and auth-flow report (OAuth, refresh, 2FA, biometric)
  • Runnable source for login, portfolio and statement APIs in Python and Node.js
  • Automated test suite hitting sandbox accounts plus replayable fixtures
  • Compliance memo covering MiCA, MiFID II and GDPR responsibilities

Engagement options

Two routes, both compliant: (1) Source code delivery from $300 — you receive the full codebase plus docs and only pay after you confirm it works; (2) Pay-per-call API billing — you call our hosted endpoints and pay only for the requests you actually make. We sign NDAs by default and ship under your repo conventions.

Data available for integration

The table below maps each Neverless data type to the screen or feature where it lives in the app, the granularity we can export, and the typical downstream use we see in OpenFinance projects. The list is derived from the public app description, the published Neverless product pages, and protocol analysis we run during scoping.

Data typeSource (in-app)GranularityTypical downstream use
Crypto holdings (800+ assets)Wallet / Portfolio screenPer-asset quantity, cost basis, USD-equivalentNet worth dashboards, tax lot tracking
Gold & silver positionsMetals tabGrams held, last fix price, EUR/USD valueMulti-asset reporting, hedge analytics
Spot & leveraged tradesActivity / Trade historyPer-trade pair, side, qty, price, fee, leverageReconciliation, P&L attribution
Strategies™ positionsStrategies accountAllocated capital, returns to date, withdraw statusYield tracking, risk-adjusted return models
Borrow linesBorrow screenOutstanding principal, collateral asset, LTV, accrued interestLiquidity planning, margin-call alerts
Deposits / withdrawalsAccount > FundsRail (SEPA, Faster Payments, USD wire, on-chain), amount, statusTreasury reconciliation, audit trails
KYC & account profileProfile / IdentityTier, jurisdiction, document statusOnboarding gating, compliance review
Statements (PDF / CSV)Statements sectionDate-ranged, asset-filteredTax filing, year-end reporting

Typical integration scenarios

1. Multi-venue tax reporting

A boutique tax firm in Dublin needs to file MiCA-aligned year-end packs for clients who hold assets across Neverless and a traditional broker. Our statement export endpoint pulls a full date-range CSV — every trade, every fee — keyed by client UID and joined to the broker's data so the firm can produce one unified pack instead of stitching PDFs by hand.

2. Family-office balance dashboard

A small UK family office tracks a 7-figure crypto allocation alongside equities and gold. We sync Neverless wallet, gold/silver and Strategies™ positions every 15 minutes via the portfolio endpoint, then push deltas into the office's existing PowerBI book using the same OAuth-scoped token chain that gates the mobile app.

3. Recurring-buy automation around Boosted Bitcoin

A retail-facing newsletter wants to let subscribers mirror a Boosted Bitcoin Plan schedule introduced in October 2025. We wrap Neverless's recurring buy and leverage parameters in a thin OpenFinance-style endpoint, with idempotency keys and webhook callbacks so the newsletter's backend can confirm each leg without polling.

4. Borrow-against-crypto liquidity dashboard

A treasury desk that uses Neverless to borrow EUR against held crypto needs an early-warning view on LTV. We expose the borrow position as a typed object (principal, collateral, LTV, interest accrual) and emit a webhook when LTV crosses a configurable threshold — so the desk can repay or top up before a forced reduction.

5. Compliance audit replay

For a MiFID-licensed introducer, we package every API call our integration makes into a tamper-evident log with consent records, request hashes and the exact scope of the OAuth token. Auditors can replay any 24-hour window and prove that no data was pulled outside the user's authorization.

Technical implementation

Login & token exchange

POST /api/v1/neverless/auth/login
Content-Type: application/json

{
  "email": "user@example.com",
  "password": "<encrypted>",
  "device_id": "ios-9F2A...",
  "totp_code": "482910"
}

200 OK
{
  "access_token": "nl_at_...",
  "refresh_token": "nl_rt_...",
  "expires_in": 3600,
  "scopes": ["portfolio:read", "statements:read"]
}

Portfolio snapshot

GET /api/v1/neverless/portfolio
Authorization: Bearer <ACCESS_TOKEN>
Accept: application/json

200 OK
{
  "as_of": "2026-05-03T08:00:00Z",
  "base_ccy": "EUR",
  "cash":   [{"ccy":"EUR","amount":"1240.55"},
             {"ccy":"GBP","amount":"82.10"}],
  "crypto": [{"asset":"BTC","qty":"0.1842","value_eur":"11820.40"},
             {"asset":"ETH","qty":"3.20", "value_eur":"9612.00"}],
  "metals": [{"asset":"XAU","grams":"12.5","value_eur":"945.20"}],
  "strategies": {"allocated_eur":"2500.00","return_pct":"0.071"}
}

Statement export & webhook

POST /api/v1/neverless/statement
Authorization: Bearer <ACCESS_TOKEN>

{
  "from_date": "2026-04-01",
  "to_date":   "2026-04-30",
  "format":    "csv",
  "include":   ["trades","deposits","withdrawals","borrow"]
}

202 Accepted
{ "job_id": "stm_91a3", "callback": "https://your.app/cb" }

// Webhook payload (your endpoint receives):
{ "job_id":"stm_91a3", "status":"done",
  "url":"https://files.openfinance-lab.com/stm_91a3.csv",
  "expires_at":"2026-05-04T08:00:00Z" }

// Error contract — uniform across endpoints:
{ "error":"rate_limited","retry_after":7,"trace_id":"..." }

Compliance & privacy

Neverless operates as a MiFID investment firm via a Bank of Latvia license and as a Virtual Asset Service Provider, so every integration we ship has to honor the EU's Markets in Crypto-Assets (MiCA) Regulation as well as MiFID II investor-protection rules and GDPR. Tokens are scoped per user, refresh chains are short-lived, and request/response payloads are stripped of personal data before any logging.

For UK-resident users we additionally check FCA financial-promotion rules so that data we surface (e.g. leveraged Boosted Bitcoin schedules) is presented inside your UI with the disclaimers your legal team requires. Identity onboarding mirrors Neverless's own KYC stack — the platform publicly documents the use of Sumsub for verification, with median check times of about 18 seconds.

Data flow / architecture

A typical Neverless integration looks like this:

  1. Client app — iOS / Android / web that initiates the OAuth + 2FA flow.
  2. Ingestion API — our hosted gateway that handles tokens, throttling and retries.
  3. Storage layer — PostgreSQL + object store for raw statements, with at-rest encryption.
  4. Analytics / API output — typed REST endpoints, webhooks, or scheduled CSV / PDF drops.

Each hop logs only structured metadata (request id, scope, latency); raw account balances never leave the storage tier in plaintext.

Market positioning & user profile

Neverless is built mobile-first for retail investors in the European Economic Area and the United Kingdom, with cash legs in EUR, GBP and USD. Its core users are crypto-curious savers in their late 20s through their 40s who want one app for spot crypto, gold and silver, plus an automated yield product (Strategies™) and a borrow line — without the spread-as-fee model used by most neobanks. From an integration angle this profile matters because the data we expose tends to flow into personal-finance dashboards, family-office books and small-firm tax workflows, rather than institutional OMS stacks.

Screenshots

Click any thumbnail to open a larger view. These are the official Google Play screenshots and illustrate the surfaces we map to API endpoints.

Neverless app screenshot 1 Neverless app screenshot 2 Neverless app screenshot 3 Neverless app screenshot 4 Neverless app screenshot 5 Neverless app screenshot 6 Neverless app screenshot 7 Neverless app screenshot 8 Neverless app screenshot 9 Neverless app screenshot 10

Similar apps & integration landscape

Users of Neverless often hold accounts on neighboring crypto and multi-asset platforms. The list below is purely informational — it exists so teams browsing for any of these names can also find this integration page when they need OpenData/OpenFinance work across the broader ecosystem.

  • Revolut — Multi-currency neobank with built-in crypto; users frequently bridge EUR/GBP balances and crypto holdings between Revolut and Neverless, so unified statement exports across both are a common ask.
  • Bitpanda — Vienna-based multi-asset broker covering crypto, stocks, ETFs and metals; integrators often want one harmonized portfolio view that pulls from both Bitpanda and Neverless wallets.
  • Kraken — Long-standing US/EU crypto exchange with deep liquidity; teams overlap because Kraken handles spot trading while Neverless adds Strategies™ and metals.
  • Binance — Largest global crypto venue by volume; family-office stacks routinely need joined trade history across Binance and Neverless for tax and risk reporting.
  • Coinbase — Public US exchange with strong UK/EU presence; reconciling Coinbase trade fills with Neverless Strategies™ allocations is a frequent statement-export use case.
  • Uphold — Multi-asset wallet supporting fiat, crypto and metals; users moving precious metals between Uphold and Neverless need consistent grams/value snapshots.
  • Bitstamp — Veteran EU-licensed exchange; integrators pair it with Neverless for spot order book data plus Neverless's automated strategies.
  • eToro — Social trading platform spanning equities and crypto; copy-trading workflows need Neverless balance reads to size mirrored positions.
  • Trade Republic — German neobroker known for low-cost ETF and crypto trades; clients integrate it alongside Neverless to unify European retail-investing data.
  • Scalable Capital — German digital broker with a crypto sleeve and savings plans; recurring-buy schedules from Scalable map cleanly onto Neverless's Boosted Bitcoin Plan model.

About us

OpenFinance Lab is an independent studio focused on fintech protocol analysis and OpenData / OpenFinance / OpenBanking integration. Our engineers come out of crypto exchanges, EU neobanks and payment-gateway teams, and we have shipped integrations against MiFID-licensed venues, PSD2-regulated banks and a dozen wallet apps.

  • Crypto and digital-asset platforms, neobanks, brokers and insurtech
  • OAuth, mTLS and reverse-engineered mobile auth flows
  • Custom Python, Node.js and Go SDKs plus reusable test harnesses
  • Full pipeline: protocol analysis → build → validation → compliance memo
  • Source code delivery from $300 — runnable code and docs, paid after acceptance
  • Pay-per-call API billing — hosted endpoints, only pay for what you actually call

Contact

Tell us your target app, the data fields you need, and any deadlines. We reply within one business day with scope, price and a delivery date.

Open contact page

Engagement workflow

  1. Scope confirmation — we agree the exact data set (e.g. balances, statements, Strategies™, borrow).
  2. Protocol analysis & API design — typically 2–5 business days.
  3. Build & internal validation against sandbox accounts — 3–8 business days.
  4. Docs, samples and replayable test cases — 1–2 business days.
  5. First delivery usually lands in 5–15 business days; multi-asset stacks may extend.

FAQ

What do you need from me to start a Neverless integration?

The target app name (Neverless: Grow your wealth, already provided), the concrete data you need (e.g. crypto balances, statement history, Strategies positions, borrowing exposure), and any existing user credentials, MiFID-related sandbox access or merchant agreements your team already holds.

How long does a typical Neverless API delivery take?

Most first drops ship in 5 to 12 business days: protocol analysis and auth flow in the first week, statement and portfolio endpoints in the second. Multi-asset stacks that include borrowing and Strategies typically extend to 3 weeks.

How do you handle MiCA, MiFID II and GDPR compliance?

We work strictly under user authorization or documented public endpoints, with consent records, scoped tokens, structured logging and EU data-minimization defaults. Every delivery includes guidance on how the data flow lines up with MiCA, MiFID II investor protection and GDPR Article 5/6 obligations.

Which engagement model fits a small team best?

Source code delivery from $300 fits teams that want to host the integration themselves and own the codebase. Pay-per-call API billing fits teams that want to skip ops and only pay for the requests they actually make against our hosted Neverless endpoints.
📱 Original app overview (appendix)

Neverless: Grow your wealth is a London-based mobile platform founded in 2022 by three former Revolut executives — Phuc To, Arthur Johanet and Mikael Peydayesh — and launched on the App Store and Google Play in December 2023. It raised a $6.7 million pre-seed round and, by late 2025, had grown past 50,000 customers and more than $1 billion in cumulative trading volume. The company holds a MiFID investment-firm licence via the Bank of Latvia and operates as a Virtual Asset Service Provider for crypto.

  • Crypto, gold and silver investing — Buy and sell gold, silver and 800+ cryptocurrencies with 0 fees and at the best market prices. Go long or short with up to 5x leverage. Deposit and withdraw instantly in EUR, GBP, USD or crypto.
  • Strategies™ — A market-neutral, automated yield account powered by algorithms that exploit small price differences between exchanges. Invest as much or as little as you want; withdraw any time.
  • Borrow — Borrow euros against held crypto and metals to unlock liquidity. Withdraw to your bank without selling your crypto. Instant access without credit checks; repay any time.
  • Boosted Bitcoin Plan (Oct 2025) — A recurring-buy programme that layers up to 5x leverage on top of dollar-cost averaging into BTC.
  • Bank-grade security — State-of-the-art encryption, auto-enrolled 2FA on sensitive operations, biometric session locking. User data is never used or shared except for regulatory purposes.
  • Coming soon — Stocks investing.

Source material: official Google Play / App Store listings, neverless.com, and public reporting (TechCrunch, CoinDesk, CryptoPotato, Sumsub case study).

Last updated: 2026-05-03