Authorized protocol analysis, statement APIs, SBP/QR payment rails, 1C export bridges, and daily-income savings data for Russian SME fintech stacks.
Ozon Банк для бизнеса (package ru.ozon.fintech.sme) is Ozon Bank's mobile channel for individual entrepreneurs (ИП) and legal entities (ООО) across Russia. The app hosts structured financial data — current accounts, savings "Daily Income" balances, transactional history, SBP/QR settlements, 1C payment orders, tariff limits, and digital certificates — that ERP, accounting, and marketplace-ops teams increasingly need to query in real time. Our studio turns that mobile app surface into a clean, documented, authorized API layer.
Ozon Bank is one of the fastest-growing SME-oriented banks in Russia. It operates under Central Bank of Russia license #3542 and positions itself as a fully remote bank for entrepreneurs — not only for sellers on the Ozon marketplace, but for any Russian business. In 2024 and 2025, the bank widened the Daily Income savings account (interest accrued on any balance, every calendar day, withdrawable at any time), expanded free cash-withdrawal limits at partner ATMs to several million rubles per month, and pushed self-service onboarding for ИП and ООО directly inside the mobile app. Each of these features produces structured, queryable data — exactly the kind of surface OpenData, OpenFinance, and OpenBanking style integrations are designed to expose.
For CFOs, accountants, ERP vendors, marketplace-ops teams and risk desks, the data inside the Ozon Банк для бизнеса app is operationally critical: live balances drive supplier payouts, statement lines feed VAT and USN (simplified-tax) reports, SBP confirmations close order loops for omnichannel retailers, and Daily Income accruals inform treasury decisions. Our studio takes these signals and packages them as stable HTTP APIs, message-queue events, or scheduled exports, so the information stops being "trapped" inside the app and starts flowing through your systems.
Long-tail use cases we see repeatedly include: Ozon marketplace seller reconciliation (payout vs. order), automated 1C:Предприятие posting of bank statements, multi-bank SME dashboards that mix Ozon Bank with СберБизнес / Т-Банк Бизнес / Альфа-Банк Бизнес accounts, compliance audit trails for 115-ФЗ (AML) reviews, and daily-income yield tracking across multiple legal entities.
OTP-based login replicating the mobile flow, device registration, long-lived refresh tokens, and role awareness for director vs. accountant vs. employee profiles. Supports multi-entity switching for holdings with several ИП/ООО.
Use case: single sign-on from your ERP into a read-only Ozon Bank statement view, no password sharing.
Fetches current-account operations (income, expense, internal), SBP/QR items, card acquiring credits, budget payments (taxes, contributions), and Ozon Card transfers. Supports paging, date windows, and counterparty filters. Fields exposed: op_id, date, amount, currency, direction, counterparty_name, counterparty_inn, purpose, sbp_qr_id.
Use case: nightly reconciliation with the client's accounting system.
Create SBP payout orders, generate dynamic SBP QR codes for acquiring, poll confirmation status, and receive webhooks when the counterparty bank settles. Handles 15-second settlement windows and retries on transient failures.
Use case: omnichannel retailer closing an online order the moment the customer scans the QR.
Downloads statements as 1C-compatible text (1CClientBankExchange) and uploads payment orders from 1C:Бухгалтерия into the bank. Handles encoding, routing numbers, and validation for INN / KPP / BIC fields.
Use case: fully automated payment-day workflow — no manual statement uploads.
Reads balance, daily interest accrual, deposit/withdrawal history, and current yield for the "Daily Income" account (накопительный счёт Ежедневный доход). Designed for treasury and multi-entity cash management.
Use case: consolidated treasury dashboard across ten legal entities.
Pulls current-tariff metadata (operation limits, free ATM withdrawal caps, monthly SBP ceilings) and can order digital certificates (account references, tax residency, turnover confirmations).
Use case: automated generation of bank letters for tenders or counterparty KYC packages.
The table below maps the data surface visible inside Ozon Банк для бизнеса to integration-ready endpoints our studio typically delivers. Rows are derived from the public app description, screenshots, and publicly documented Ozon Bank SME features.
| Data type | Source screen / feature | Granularity | Typical use |
|---|---|---|---|
| Current-account balance | Main dashboard · "Счёт" | Real-time, per account & per legal entity | Liquidity dashboards, payout eligibility checks |
| Transaction statement | "История операций" / statement download | Operation-level, with SBP / QR / card / budget classifiers | Accounting sync, 1C posting, VAT/USN reports |
| SBP & QR payments | SBP / QR pay screens | Per payment, with status (created · settled · failed) | Order fulfillment, payment-link flows |
| Counterparty payouts | "Платёж контрагенту" | Per payment order, with INN / KPP / BIC | Payroll, supplier payouts, treasury automation |
| Budget payments | "Платежи в бюджет" | Per tax/contribution line (КБК, ОКТМО) | Automated tax-day runs, audit logs |
| Daily Income balances | Savings / "Ежедневный доход" | Daily accrual, per entity | Treasury yield tracking, cash sweep rules |
| Tariff & limits | "Тарифы" screen | Plan-level, updated on change | Limit monitoring, alerts before cap breach |
| Certificates & references | "Справки" screen | Document-level (PDF / signed) | Tender participation, counterparty KYC |
| Ozon Card transfers | "Перевод на Ozon Card" | Per transfer | Linking marketplace cashflow with personal card |
Context: an Ozon marketplace seller receives daily payouts to their Ozon business account and must reconcile each payout against delivered orders. Data involved: statement lines tagged as Ozon internal, order IDs in payment purpose, and settlement timestamps. OpenData mapping: statement API feeds a matching engine that closes order → payout pairs and flags exceptions for finance.
Context: accountants for ИП/ООО want zero-manual statement uploads. Data involved: 1CClientBankExchange export + payment-order upload. OpenFinance mapping: the bridge replaces the nightly "download → email → import" chain with signed API calls; postings hit 1C with the same BIC/INN structure 1C expects.
Context: a café chain wants to accept SBP-QR at the counter and see the payment marked as settled in the POS within 15 seconds. Data involved: SBP QR creation, webhook on settlement, operation ID. OpenBanking mapping: initiated-payment pattern similar to PSD2, adapted to the Russian SBP rails.
Context: a holding with 8 ИП / 3 ООО wants a single dashboard of current balances, Daily Income accruals, and tax-liability forecasts. Data involved: balances, savings accruals, budget payments. Mapping: a consolidated API layer exposes per-entity and aggregated views, consumable by Superset, Metabase, or Power BI.
Context: compliance team needs an immutable, timestamped log of each large counterparty payment (for AML review). Data involved: payment orders with INN/KPP, status transitions, device fingerprints. Mapping: webhook-driven event sourcing pipeline writing to append-only storage with retention aligned to Russian tax-record rules.
POST /api/v1/ozon-sme/auth/otp/request
Content-Type: application/json
{
"phone": "+7XXXXXXXXXX",
"device_id": "erp-bridge-01",
"role_hint": "accountant"
}
-- then --
POST /api/v1/ozon-sme/auth/otp/confirm
{
"phone": "+7XXXXXXXXXX",
"otp": "123456",
"device_id": "erp-bridge-01"
}
200 OK
{
"access_token": "...",
"refresh_token": "...",
"expires_in": 3600,
"entities": [
{"inn": "7701234567", "kpp": "770101001", "type": "OOO"},
{"inn": "500100000000", "type": "IP"}
]
}
POST /api/v1/ozon-sme/statement
Authorization: Bearer <ACCESS_TOKEN>
Content-Type: application/json
{
"inn": "7701234567",
"account_id": "40702810900000012345",
"from_date": "2026-03-01",
"to_date": "2026-03-31",
"op_types": ["SBP", "COUNTERPARTY", "BUDGET"],
"page": 1,
"page_size": 200
}
200 OK
{
"total": 1342,
"page": 1,
"items": [
{
"op_id": "OP-8f21-...",
"date": "2026-03-11T09:42:11+03:00",
"direction": "OUT",
"amount": 125000.00,
"currency": "RUB",
"op_type": "COUNTERPARTY",
"counterparty": {"name": "OOO Postavschik", "inn": "7702233445", "bic": "044525225"},
"purpose": "Payment for invoice 2026-0311"
}
]
}
POST https://yourapp.example.com/webhooks/ozon-sme/sbp
X-Signature: sha256=...
Content-Type: application/json
{
"event": "sbp.payment.settled",
"occurred_at": "2026-03-11T12:00:05+03:00",
"merchant_inn": "7701234567",
"qr_id": "AB12-99F0-...",
"order_ref": "SHOP-ORD-4477",
"amount": 499.00,
"currency": "RUB",
"payer_masked_phone": "+7(***)***-12-34",
"status": "SETTLED"
}
-- Recommended handler logic --
1. Verify HMAC signature with shared secret
2. Idempotency check by (event + qr_id)
3. Close order in POS / ERP
4. Ack with 200 within 5 seconds or webhook retries
Ozon Bank operates under supervision of the Central Bank of the Russian Federation (license #3542) and within the perimeter of Russian financial regulation. Any integration we deliver explicitly respects the following: 152-ФЗ "On personal data" (consent, minimization, localization of Russian-citizen data on Russian-territory storage), 115-ФЗ (AML/CFT audit trails for suspicious operations), 161-ФЗ "On the national payment system" (rules for SBP and electronic funds transfers), and the Central Bank's information-security standards (including GOST R 57580 expectations for financial institutions and their technology partners).
For cross-border clients, we additionally align the exposed API with GDPR-style data-minimization patterns (purpose-limited fields, scoped tokens, short-lived access) so that European or global ERP vendors can consume Ozon Bank data without ingesting unnecessary personal identifiers. Sensitive fields such as masked phone numbers, passport series, or director TINs are emitted only when explicitly requested and authorized.
We never ask clients to share long-lived plaintext credentials. Instead, we rely on authorized sessions (consent flow initiated by the legal representative), signed webhooks, and revocable refresh tokens. NDAs are signed before any engagement that touches production data.
A typical Ozon Банк для бизнеса integration looks like this:
End-to-end latency from a settled SBP payment to an ERP order-closed event is typically under 10 seconds in production deployments.
Ozon Банк для бизнеса targets Russian B2B customers — primarily individual entrepreneurs (ИП) and small-to-mid-sized limited liability companies (ООО). Typical users are e-commerce sellers (not necessarily tied to the Ozon marketplace), service businesses, freelancers operating as ИП, and growth-stage SaaS or retail companies that want fully online banking without branch visits. The app covers both Android and iOS platforms, is localized for Russian, and is operated 24/7 — including weekends and national holidays, which is an explicit selling point of Ozon Bank. Integration clients are usually ERP vendors, accounting-software providers, marketplace-ops SaaS, and in-house finance teams looking to replace manual statement handling with authorized APIs.
Screens from Ozon Банк для бизнеса — click any thumbnail to open a larger preview. These illustrate the visible data surface we convert into APIs: dashboard, accounts, payments, SBP/QR flows, tariffs, and certificates.
Ozon Банк для бизнеса is one node in a broader ecosystem of Russian SME banking and payment apps. Teams that integrate Ozon Bank data often also need to integrate with one or more of the platforms below. We list these to help you plan a multi-bank data strategy and to make it easier for engineering teams searching for related integrations to discover this page.
Sberbank's mobile channel for SMEs, with invoice recognition, payroll, currency control, and payment terminals. Teams typically need unified statement exports alongside Ozon Bank.
Fully online business bank with an extensive public open-API (T-API). Frequent target for cross-bank reconciliation pipelines.
SME-focused digital bank with strong API and webhook support. Common counterpart in multi-bank dashboards for marketplace sellers.
Large SME portfolio with a well-documented Alfa Business API; often used by mid-market customers alongside Ozon Bank.
Second-largest Russian bank's SME app; integration scope typically covers SBP, budget payments, and 1C exchange.
SME-first bank known for developer-friendly APIs and accounting bundles. Regular target for accounting-software vendors.
Promsvyazbank's SME channel, widely used by manufacturing and construction SMEs; integration often centers on budget and counterparty payments.
Retained by many international-facing Russian SMEs; integrations often involve currency control and SBP rails.
SME banking platform with multiple integration surfaces for ERP and 1C; appears in many consolidated treasury setups.
Payment and e-money platform for Russian sellers; complements Ozon Bank for online checkout and mass-payout scenarios.
If your project spans several of the above, we can normalize statements, payment orders, and SBP events into a single canonical schema, so analytics and accounting systems consume one unified stream instead of per-bank silos.
We are an independent technical studio focused on mobile app protocol analysis and authorized API integration for fintech and e-commerce. Our engineers have shipped integrations for banks, payment gateways, marketplaces, and ERP vendors, with a particular emphasis on CIS and global fintech. We operate under NDAs and deliver reproducible, documented source code rather than black-box services.
Send us the target app name and your requirements — transactions, balances, SBP payouts, 1C bridge, savings, or a full multi-bank rollup — and we will respond with a scope, timeline, and price.
We reply within one business day. NDAs provided on request.
Typical first delivery: 5–15 business days; dependencies on the client's own sandbox or approvals may extend timelines.
What do you need from me?
How long does delivery take?
How do you handle compliance?
Which engagement model should I pick?
Ozon Банк для бизнеса (package ru.ozon.fintech.sme) is the official mobile banking app from Ozon Bank for individual entrepreneurs (ИП) and legal entities (ООО) in Russia. It is operated by Ozon Bank, which holds Central Bank of Russia license #3542 and provides SME banking services far beyond Ozon marketplace sellers — the bank explicitly states that "selling on marketplaces is not necessary" to open an account.
The app allows users to:
The app's "Daily Income" savings account pays interest on any balance, every calendar day, with unlimited withdrawals and unlimited replenishments from current accounts, QR codes, or Ozon marketplace revenue. Internal transactions inside Ozon Bank run 24/7, and the bank's support team operates around the clock. The product is updated regularly, with features added continuously so that entrepreneurs can operate their business from their phone when a computer is not at hand.
This page is an independent technical integration brief. Ozon Банк для бизнеса is a trademark of Ozon Bank; all references are for descriptive integration-positioning purposes only.