Bring Conta Azul de Bolso data into your accounting, ERP or BI stack
Conta Azul de Bolso is the mobile companion of Conta Azul Pro, the Brazilian SMB ERP that handles contas a pagar, contas a receber, sales, NFe, NFS-e, Pix, DDA and the in-house Conta PJ payment institution. The app and its backend hold a dense dataset that finance teams, accountants and integrators actively want to extract: real-time cash flow, paid and overdue invoices, Pix and boleto receipts, supplier payments and customer registries linked by CNPJ.
- Transactions, balances and statements — Pix, boleto, card-via-link receipts, plus bank statements imported via Open Finance Brasil from Sicoob, Nubank, Banco do Brasil, Caixa and C6 Bank.
- Sales, quotes and invoices — Orders, NFe and NFS-e records (including the 2024 export-related NFe fields), tied to customer CNPJ and product SKUs.
- Reconciliation-ready data — Native links between bank movements, contas a pagar and contas a receber that downstream systems can mirror.
Feature modules we deliver
Account login & OAuth refresh
Wraps the official Conta Azul OAuth 2.0 Authorization Code flow with PKCE, refresh-token rotation and idempotent token storage. Used to bind tenants in multi-account dashboards and to keep refresh windows alive within the documented 14-day refresh validity.
Statement & cash flow API
Exports contas a pagar, contas a receber, paid, scheduled and overdue rows by date range, account, status and supplier. The statement endpoint supports paging and JSON / Excel / PDF output, which is what accountants typically need for monthly closing.
Pix, boleto and card-via-link charges
Issues a single charge that customers can pay via Pix, boleto or card link. Receipts compensate in real time and the integration mirrors Conta Azul's automatic NFS-e emission on payment identification, so the downstream ERP receives both the receipt and the fiscal document.
NFe & NFS-e issuance
Covers product NFe and service NFS-e, including the 2024 export-only fields (Local de embarque, UF de embarque, Numero Drawback, Registro de exportacao, Chave da NFe recebida para exportacao) for clients that ship abroad.
DDA & supplier payments
Ingests boletos addressed to the company CNPJ via DDA, links them to contas a pagar, and lets your stack approve payment in batch (the 2024 batch-payments option in Conta PJ) or as a single scheduled transfer between own accounts or registered suppliers.
Open Finance Brasil consent
Manages the regulated Open Finance Brasil consent lifecycle: authorize, renew and revoke against Sicoob, Nubank, Banco do Brasil, Caixa and C6 Bank, and pulls D-1 transactions exposed by each bank, including weekend movements that PDF statements would push to Monday.
Data available for integration (OpenData inventory)
Use this table when you scope which Conta Azul de Bolso entities to extract or sync. Granularity reflects what the official ERP API and the Open Finance Brasil consent return today.
| Data type | Source / screen | Granularity | Typical use |
|---|---|---|---|
| Bank movements (D-1) | Open Finance Brasil consent (Sicoob, Nubank, BB, Caixa, C6) | Per-transaction with real value date | Reconciliation, cash-flow forecasting, audit |
| Contas a pagar / receber | Financeiro module in CA Bolso | Status (paid, scheduled, overdue), supplier, due date | AR/AP automation, BI dashboards, dunning |
| Pix / boleto receipts | Cobrancas (charges) feature | Per-charge, with payer CPF/CNPJ when shared | Auto-issuing NFS-e, ledger posting |
| NFe / NFS-e records | Fiscal module + DDA inbox | Item-level, with export fields | Tax reporting, ERP sync, e-commerce returns |
| Customers, products, services | Cadastros | Editable masters tied to CNPJ/SKU | CRM sync, marketplace catalog mirror |
| Quotes & sales | Vendas module | Per-sale with line items and discount | Pipeline analytics, quota tracking |
| Conta PJ transfers & Pix limits | Conta PJ payment institution | Per-transfer, with limit policies and trusted contacts | Treasury, fraud-control review, oversight |
Typical integration scenarios
1. Accounting office multi-tenant sync
An accounting firm with hundreds of SMB clients on Conta Azul Pro needs nightly extractions of contas a pagar, contas a receber and NFe. We use the OAuth 2.0 Authorization Code flow per tenant, persist refresh tokens, and pull /v1/financeiro + /v1/nfe with date filters. Mapping aligns with the firm's chart of accounts and exports to Excel for the accountant's audit trail.
2. E-commerce reconciliation with Pix and NFS-e
A Shopify or VTEX store issues charges through Conta Azul de Bolso so a single link offers Pix, boleto or card. When payment compensates, the integration captures the webhook, calls the NFS-e endpoint, and posts both events back to the storefront's order so finance and operations stay aligned.
3. Treasury dashboard with Open Finance Brasil
A holding company with five CNPJs consolidates balances across Sicoob, Nubank, Banco do Brasil, Caixa and C6 Bank. We orchestrate the regulated Open Finance consent flow (including renewal before the 12-month expiry), normalize the D-1 movements from each ITP/AISP, and feed a Power BI dataset alongside the Conta Azul reconciled categories.
4. DDA-driven supplier payment batch
Finance teams that pay dozens of boletos per week consume the DDA inbox, match each bill to contas a pagar by CNPJ + due date, and submit a batch payment to Conta PJ — using the 2024 batch-finalization option — with cryptographically signed approval chains.
5. Compliance audit and consent log
A larger client must show ANPD evidence that every data pull has a legal basis. The integration produces an audit log of OAuth grants, Open Finance consents, and Pix limit changes (period, trusted contact, trusted company) so internal audit can answer LGPD information requests within the legal deadlines.
Technical implementation
OAuth 2.0 Authorization Code (token refresh)
POST https://api.contaazul.com/oauth2/token
Content-Type: application/x-www-form-urlencoded
grant_type=refresh_token
&refresh_token=<REFRESH_TOKEN>
&client_id=<CLIENT_ID>
&client_secret=<CLIENT_SECRET>
200 OK
{
"access_token": "eyJhbGciOi...",
"expires_in": 3600,
"refresh_token": "v1.MUE5...", // single-use, 14d validity
"token_type": "bearer"
}
Statement query (financeiro)
GET /v1/financeiro/lancamentos
?status=PAGO,VENCIDO
&data_inicio=2026-04-01
&data_fim=2026-04-30
&page=1&size=100
Authorization: Bearer <ACCESS_TOKEN>
200 OK
{
"items": [
{
"id": "f3d8...",
"tipo": "RECEITA",
"valor": 1842.50,
"data_pagamento": "2026-04-12",
"categoria": "Vendas / Pix",
"cliente_cnpj": "12.345.678/0001-90",
"origem": "OPEN_FINANCE_BB"
}
],
"page": 1, "total": 412
}
Pix charge webhook
POST /webhook/contaazul-pix HTTP/1.1
X-CA-Signature: sha256=4f1c...
{
"event": "cobranca.pago",
"cobranca_id": "9f7a-4abc",
"valor": 250.00,
"metodo": "PIX",
"txid": "E18236120202604121500u00",
"pago_em": "2026-04-12T15:00:11-03:00",
"nfse_emitida": true
}
Compliance & privacy
All data flows we deliver use the documented Conta Azul OAuth 2.0 API or the regulated Open Finance Brasil consent — no scraped session cookies, no shared credentials. We follow the Lei Geral de Protecao de Dados (Lei 13.709/2018) data-minimization rule, store consent records, log token refreshes, and produce ANPD-friendly audit trails. Penalties under LGPD reach 2% of revenue capped at R$50M per infraction, so a defensible legal basis is part of every delivery.
For Pix and DDA we align with current Banco Central rules, including the 2024-2025 Pix fraud verification step and the new Pix limit management (period, trusted contacts, trusted companies). Open Finance flows respect the 12-month consent renewal cycle and the per-bank scope catalog.
Modules we typically ship
- OAuth 2.0 client with PKCE and refresh-token rotation
- Pix / boleto / card-via-link charge service + webhook receiver
- NFe and NFS-e issuance with 2024 export fields
- DDA inbox processor matched to contas a pagar
- Open Finance Brasil consent, renewal and statement importer
- Conta PJ batch payment and scheduled transfer queue
- LGPD-ready audit log and consent registry
Data flow / architecture
A typical Conta Azul de Bolso pipeline has four stages: (1) Tenant onboarding — OAuth 2.0 Authorization Code grant with PKCE, refresh tokens stored in a per-tenant vault. (2) Ingestion — REST polling for sales, financeiro, NFe; webhooks for Pix charge events; and the Open Finance Brasil daily D-1 importer that fans out to Sicoob, Nubank, Banco do Brasil, Caixa and C6 Bank. (3) Storage & reconciliation — Postgres or BigQuery tables keyed by CNPJ + Conta Azul entity ID, with idempotency keys to handle retries; a reconciliation worker matches bank movements to contas a pagar / receber. (4) Consumption — Outbound APIs, scheduled CSV/Excel exports for accountants, and event streams for ERP/BI tools. Token refresh, consent renewal and webhook signing are handled out of band so client apps never need to know the underlying auth chain.
Market positioning & user profile
Conta Azul Pro and its mobile counterpart Conta Azul de Bolso are positioned at Brazilian small and mid-sized businesses (typically 1-50 employees) and the accountants that serve them, with strong concentration in retail, services, professional firms and engineering. The user base skews B2B, mostly Android, and is heavily Brazil-centric because the product is tightly coupled to local fiscal documents (NFe, NFS-e), DDA, and the BACEN-regulated Pix and Open Finance Brasil ecosystems. Integration buyers tend to be accounting offices consolidating dozens or hundreds of SMB tenants, e-commerce operators that want a single Pix + NFS-e flow, and finance teams running treasury dashboards across multiple CNPJs and partner banks.
Screenshots
Screens from Conta Azul de Bolso illustrating the financeiro, charges, NFe and Conta PJ surfaces that our integrations target. Click any thumbnail to enlarge.
Similar apps & integration landscape
Many teams that operate Conta Azul de Bolso also touch the broader Brazilian SMB ERP ecosystem. We frame these neighboring tools below so the integration landscape is clear and unified data exports across them are easier to plan.
Bling
Cloud ERP popular with Brazilian e-commerce sellers. Holds orders, NFe, inventory and marketplace bridges; companies that bridge Bling and Conta Azul typically need a single SKU + CNPJ key to merge sales and accounting views.
Omie
Cloud ERP for SMBs with strong financial and accounting modules. Customers often consolidate Omie and Conta Azul cash-flow for a finance-team dashboard, mapping Omie boletos into Conta Azul contas a pagar.
Tiny ERP
E-commerce-focused ERP, recently part of the Olist group. Tiny exports of orders and NFe make it a common counterpart when migrating or running both systems during a transition window.
Eccosys
Higher-end ERP for larger e-commerce operations. Treasury teams crossing Eccosys and Conta Azul de Bolso usually need to align Pix and Open Finance receipts with multi-store sales feeds.
Nibo
Cloud platform aimed at accounting offices managing many SMB clients. Often paired with Conta Azul tenants when a firm wants a unified inbox of obligations across both providers.
ZeroPaper
Lightweight financial control tool for very small businesses. Migrators from ZeroPaper to Conta Azul Pro frequently ask for a one-shot importer that maps simple accounts into the Conta Azul chart of accounts.
QuickBooks Brasil
International accounting platform with a Brazilian footprint. International groups with subsidiaries on Conta Azul often want a consolidated trial balance that aligns Brazilian fiscal documents with QuickBooks.
Sage
Enterprise accounting suite used by some larger Brazilian operations. Pairs naturally with Conta Azul for audit trails when a holding company runs Sage at the top and Conta Azul Pro at the operating-company level.
FreshBooks
SaaS invoicing and time-tracking platform. International freelancers and agencies billing Brazilian clients often run FreshBooks for invoices and Conta Azul for fiscal documents and Pix receipts.
Dolibarr
Open-source ERP/CRM. Self-hosted Dolibarr deployments occasionally need an outbound adapter into Conta Azul de Bolso so accountants stay on a familiar interface even when operations live elsewhere.
Deliverables checklist
- API specification (OpenAPI / Swagger)
- Protocol and auth flow report (OAuth 2.0 + Open Finance Brasil consent)
- Runnable source for OAuth, financeiro, NFe and Pix endpoints (Python / Node.js)
- Webhook receiver and signature verification
- Reconciliation worker mapping bank movements to contas a pagar / receber
- Automated tests, sample payloads, and Postman collection
- LGPD compliance notes and consent log template
About us
We are an independent studio focused on fintech and OpenData/OpenBanking integrations. Our team includes engineers from Brazilian banks, payment institutions, ERP vendors and protocol-analysis backgrounds. We know LGPD, the BACEN Open Finance Brasil ruleset and the Conta Azul Pro plan structure, and we ship end-to-end APIs under those constraints.
- Brazilian SMB ERP and accounting integrations
- Pix, boleto, DDA and NFe pipelines
- Open Finance Brasil consent orchestration
- Source code delivery from $300 — runnable code and full documentation; pay after delivery upon satisfaction
- Pay-per-call API billing — access our hosted API and pay only per call, no upfront cost
Engagement workflow
- Scope confirmation: which entities, plan tier, target banks for Open Finance.
- OAuth 2.0 client registration and sandbox dry-run (1-2 business days).
- Protocol analysis and API design (2-5 business days, depends on complexity).
- Build and internal validation against a real Conta Azul Pro tenant (3-8 business days).
- Docs, samples and reconciliation tests (1-2 business days).
- Typical first delivery: 5-15 business days; multi-bank Open Finance flows may extend this.
FAQ
What do you need from me to start a Conta Azul de Bolso integration?
How long does delivery take?
How do you handle compliance with Brazilian rules?
Do you cover the new 2024-2025 features such as Pix limit management and batch payments?
Contact
For quotes or to submit your target app and requirements, open our contact page:
Original app overview (appendix)
Conta Azul de Bolso (package com.contaazul.mobile.pro.ca_mobile_pro) is the mobile companion of Conta Azul Pro, an exclusive application for Conta Azul customers that puts a Brazilian SMB ERP in the palm of the owner's hand. From the app, business owners can charge, receive and pay directly through the integrated Conta Azul Business Account (Conta PJ).
- Financial management — Manage contas a pagar and contas a receber inside the app and consult daily flow: balances receivable, payable and overdue.
- Sales & cadastros — Create and manage quotes and sales; register, edit and delete customers, products and services.
- Charges — Issue and share charges via boleto, Pix or card-via-link, with real-time compensation that releases cash flow immediately.
- Payments & transfers — Make and schedule payments directly from the app; transfer between own-ownership accounts or to registered suppliers; finalize batch payments in the Conta Azul Business Account (added 2024).
- Native reconciliation — Receipts and payments are mirrored automatically into contas a pagar and contas a receber.
- DDA — Locate every boleto issued for the company CNPJ via DDA.
Tagline used by the publisher: "Conta Azul: we make the complex simple."