Noelse API integration services (French IBAN / OpenFinance)

PSD2-aligned protocol analysis and production-ready APIs for individual and professional Noelse accounts

From $300 · Pay-per-call available
OpenData · OpenFinance · PSD2 · French IBAN integration

Connect Noelse accounts, IBAN transactions and TPE settlements to your stack

Noelse is a French payment institution (Afone Paiement, ACPR-approved) offering personal and pro accounts, French IBANs, instant SEPA transfers, sub-accounts and Eftpos terminals. We deliver protocol analysis and OpenBanking-style APIs so accounting tools, ERPs and analytics platforms can read and write that data under user consent.

French IBAN account & balance API — Bind individual or pro accounts, fetch the live IBAN, current balance, sub-account balances and customizable account labels for downstream cash-flow tools.
Transaction & statement export — Pull unlimited history with date filters, tags and annotations; export to JSON, CSV or PDF for accounting reconciliation and audit.
Instant SEPA & recurring transfers — Initiate one-off, scheduled or instant transfers, manage beneficiaries, and receive webhook callbacks on settlement status.
TPE / Eftpos settlement aggregation — Aggregate the dedicated TPE sub-account, telecollection batches and per-shop performance into a normalized settlement schema.

Market positioning & user profile

Noelse, operated by the Afone group through its Afone Paiement subsidiary, was launched in late 2020 as a French challenger account targeting two segments at once: individuals who want a simple smartphone-first account with a French IBAN, and professionals — freelancers, craftsmen, traders and small entrepreneurs — who need a pro account, a business card, sub-accounts and acquiring through Noelse Eftpos terminals. The platform is recognized in the European digital-banking landscape, with an average user rating around 4.0/5 on neobank directories. Most usage is concentrated in mainland France and operates on Android and iOS, regulated by the French ACPR as a payment institution.

What we deliver

Deliverables checklist

  • OpenAPI 3.1 specification covering login, accounts, transactions, transfers, TPE settlements
  • Protocol & auth flow report (token rotation, device binding, two-factor patterns)
  • Runnable Python and Node.js source for IBAN sync and statement APIs
  • Webhook receiver template for instant transfer and TPE telecollection events
  • Automated test suite, Postman collection and PSD2-aligned consent guidance

Recent change worth noting

In 2024 Noelse partnered with Algoan to layer Open Banking decisioning on top of customer accounts and roll out a €100 advance product. Around the same period the company expanded its acquiring stack with Ingenico Eftpos terminals, signalling a clear move toward integrated B2B settlement data — exactly the data slice most ERPs and reconciliation platforms want to ingest.

Data available for integration

The table below summarizes the structured data Noelse holds and the typical downstream uses we wire up for clients. Coverage assumes user-authorized access and is based on the visible product surface plus published roadmap items.

Data typeSource (screen / feature)GranularityTypical use
Account & IBAN profileOnboarding + Accounts screenPer account, per sub-accountKYC sync, payout setup, bank-link verification
Live balance & available fundsHome dashboardPer account, refreshed on eventCash-flow dashboards, treasury automation
Transaction historyUnlimited history viewPer transaction, with annotationAccounting reconciliation, expense reports
Card lifecycleDigital card / physical card screensPer card event (issued, frozen, lost)Risk control, employee card programs
Transfer & beneficiary listTransfer flowPer transfer, per beneficiaryPayroll, supplier payments, scheduled treasury
Sub-accounts (projects/savings)Sub-account managerPer bucket, with goalsBudgeting apps, multi-shop separation
TPE / Eftpos settlementPro dashboard, dedicated TPE sub-accountPer terminal, per telecollection batchPOS reconciliation, shop performance, accounting
Spending notificationsMobile push channelPer event, near real-timeFraud alerts, budget triggers, automation hooks

Typical integration scenarios

1. Multi-shop TPE reconciliation for a retailer

A small retail chain with three Noelse Eftpos terminals needs daily settlement matched against POS receipts. We bind each terminal to its shop, pull telecollection batches from the dedicated TPE sub-account, and emit a normalized settlement_id → shop_id → gross/net/fees stream into the client's accounting tool. This maps to the OpenFinance acquiring data category.

2. Freelancer accounting auto-sync

A freelancer wants their Noelse pro IBAN feeding directly into their bookkeeping tool. We expose an authorized statement endpoint with categorization tags from the user's annotations, then push monthly closes into the accounting backend. This is a textbook PSD2 AISP scenario.

3. Treasury & instant SEPA from an ERP

A small B2B SaaS triggers supplier payouts from its ERP. We wrap Noelse's instant transfer flow behind a POST /transfers endpoint with idempotency keys, beneficiary cache and PISP-style consent, then return webhook callbacks on settlement. This compresses payment latency from minutes to seconds.

4. Personal finance aggregation

A French PFM app wants to aggregate Noelse alongside other banks. We deliver a Noelse connector that mirrors the announced account-aggregation roadmap, normalizes balances and transactions to the AISP schema, and refreshes every 4 hours with on-demand pull on user open.

5. Compliance & audit export

An accountant needs a year of clean transaction data per client for tax filings. We deliver a signed batch export job — paginated transaction pulls, sub-account roll-up, PDF statement bundle, and a hash manifest for audit. Output stays inside the client's tenant and matches GDPR retention requirements.

Technical implementation

API example: bind account & fetch IBAN

POST /api/v1/noelse/auth/bind
Content-Type: application/json
Authorization: Bearer <ACCESS_TOKEN>

{
  "user_ref": "client_42",
  "consent_scope": ["accounts","transactions"],
  "device_id": "ios-9f2…",
  "tfa_channel": "sms"
}

Response 200:
{
  "account_id": "acc_8a91…",
  "iban": "FR76 3000 …",
  "type": "individual",
  "currency": "EUR",
  "consent_expires_at": "2026-08-03T00:00:00Z"
}

API example: statement export with paging

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

{
  "account_id": "acc_8a91…",
  "from_date": "2026-04-01",
  "to_date":   "2026-04-30",
  "include_subaccounts": true,
  "page": 1, "page_size": 200
}

Response 200:
{
  "items": [{
    "tx_id": "tx_b13…",
    "ts": "2026-04-12T09:18:33+02:00",
    "amount": -42.50, "currency": "EUR",
    "counterparty": "SNCF",
    "category": "travel",
    "annotation": "Client visit"
  }],
  "next_page": 2
}

API example: TPE settlement webhook

POST /your-app/webhooks/noelse/tpe
X-Noelse-Signature: t=…,v1=…

{
  "event": "tpe.telecollection.settled",
  "settlement_id": "stl_5c…",
  "terminal_id": "tpe_PARIS_03",
  "shop_id": "shop_paris_03",
  "gross": 1284.10,
  "fees":  18.66,
  "net":   1265.44,
  "currency": "EUR",
  "value_date": "2026-04-29"
}

Compliance & privacy

Noelse is a French payment institution approved by the Autorité de Contrôle Prudentiel et de Résolution (ACPR) and falls under the EU PSD2 framework. Our connectors only operate under explicit user authorization and follow AISP/PISP-style consent journeys. We log every consent grant and revoke, store tokens in encrypted vaults, and apply GDPR data-minimization to every export pipeline.

Data flow / architecture

The default pipeline is intentionally simple and auditable:

  1. Client App / ERP initiates a consent and a query.
  2. Noelse connector handles auth refresh, paging, and rate limiting.
  3. Normalization layer maps raw payloads to the AISP / settlement schema.
  4. Storage + downstream pushes to the client's data warehouse, accounting tool, or live API.

Screenshots

Click any thumbnail to view the full-size screenshot. Source: official Google Play listing.

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

Similar apps & integration landscape

Teams that integrate Noelse usually also need to read or write data in adjacent French and European fintech apps. We commonly deliver bridges between Noelse and the apps below; each one holds a specific data slice that fits naturally into a unified OpenFinance pipeline.

Qonto

European pro account widely used by SMEs and freelancers — IBAN, card transactions and accounting integrations are the usual sync targets.

Shine

Société Générale's neobank for micro-entrepreneurs; pairs naturally with Noelse for invoicing and social-charge data alignment.

Blank

Crédit Agricole's neobank for the self-employed; transaction and VAT-provision data often gets joined with Noelse statements.

Revolut Business

Multi-currency business account with strong transaction APIs; teams unify FX-side flows with Noelse's domestic French IBAN side.

N26 Business

Pan-European mobile-first account; commonly aggregated alongside Noelse for cross-border freelancers.

PropulsebyCA

Crédit Agricole's digital offering for very small businesses; a frequent companion account for Noelse Pro users seeking financing.

Hero (Heropay)

French B2B account with deferred payment features; often joined with Noelse settlement data for cash-flow planning.

Indy

French accounting app that consumes bank feeds; pairs with Noelse via AISP-style transaction exports for automated bookkeeping.

Anytime

Belgian/French neobank for SMEs and associations; complementary IBAN coverage when consolidating multi-account treasuries.

Memo Bank

French bank for SMEs; shares the regulated-payments space and is typically reconciled with Noelse for combined cash positions.

About us

OpenFinance Lab is an independent studio focused on fintech protocol analysis and OpenData/OpenBanking integrations. Our engineers come from European payment institutions, neobanks and acquiring platforms, and we ship end-to-end APIs under PSD2, ACPR and GDPR constraints.

  • Payments, digital banking, acquiring and cross-border clearing experience
  • Consent-first design with audit logs, NDAs and data-residency options
  • Custom Python / Node.js / Go SDKs and webhook receivers
  • Full pipeline: protocol analysis → build → validation → compliance review
  • Source code delivery from $300 — runnable API source plus full docs; pay after delivery upon satisfaction
  • Pay-per-call API billing — access our hosted endpoints and pay only per call, no upfront cost

Contact

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

Contact page

Engagement workflow

  1. Scope confirmation: integration scenarios and API surface (IBAN sync, statements, transfers, TPE).
  2. Protocol analysis and API design (2–5 business days, complexity-dependent).
  3. Build and internal validation against a sandbox or supervised live account (3–8 business days).
  4. Docs, samples, Postman collection and test cases (1–2 business days).
  5. Typical first delivery: 5–15 business days; ACPR-related approvals may extend timelines.

FAQ

What information do I need to provide to start a Noelse integration?

Share the target use case (for example, IBAN transaction export, sub-account reconciliation, TPE settlement aggregation), any existing sandbox credentials or merchant IDs, and the regions you operate in. We then propose an API surface and a delivery plan.

Is Noelse data access compliant with French and EU law?

Yes. Noelse is a payment institution approved by the ACPR and operates under PSD2. Our integrations rely on user-authorized access, AISP/PISP-style consent flows, audit logging, and GDPR data-minimization, with NDAs available.

How long does a typical Noelse delivery take?

A first API drop with statement export and account login normally lands in 5–12 business days. TPE settlement aggregation, multi-shop allocations and webhook pipelines can extend the timeline to three weeks.

Can you also handle TPE / Eftpos settlement data?

Yes. We map the dedicated TPE sub-account flow to a normalized settlement schema with shop-level allocation, telecollection batches and reconciliation hooks. This is one of the most-requested Noelse Pro use cases.
📱 Original app overview (appendix)

Noelse is the online account for individuals and professionals from Afone Paiement. Registration is quick, with no commitment, and the app aims to give users back control over their money — budgeting, mobile payments, and instant transfers from a single mobile interface.

  • Open an account in minutes directly from the application
  • Manage accounts easily through a smart interface
  • Activate a digital card and order a physical card
  • Make instant transfers and use a French IBAN
  • Customise services for a tailored experience
  • Organise projects or savings with sub-accounts
  • Unlimited transaction history with tallying and annotations
  • Instant spending notifications, beneficiary management, customer service

For freelancers, craftsmen, traders and entrepreneurs, Noelse offers an all-in-one solution including a pro account, business card and sub-accounts plus free EFT, real-time transaction monitoring, one-off, recurring, scheduled or instantaneous transfers, and integration with Noelse Eftpos terminals — including a dedicated TPE sub-account and per-shop allocation, with live telecollection and automatic terminal updates.

Roadmap items announced by Noelse include account aggregation, payment initiation, deposit account, instant transfer and accounting assistance. For more information visit noelse.com/faq or contact support@noelse.com.

Last updated: 2026-05-03