RecargaPay API integration & Open Finance Brasil data services

Protocol analysis, Pix statement exports, card transaction feeds, and CDB balance sync for the RecargaPay: Pix Cartão e Conta super app

From $300 · Pay-per-call available
OpenData · Open Finance Brasil · Pix protocol analysis · Fintech data extraction

Extract, reconcile, and orchestrate RecargaPay account data through compliant APIs

RecargaPay is a Brazilian super app with over 13 million users offering Pix funded by credit cards, guaranteed-limit and Platinum/Black cashback cards, CDB investments yielding up to 120% of CDI, and bill/top-up flows. We turn those screens into structured data feeds your backend can query, audit, and synchronize under Open Finance Brasil and LGPD constraints.

Pix & transaction statement API — Export inbound and outbound Pix (QR, key, copy & paste), card purchases, boleto payments, and transfer histories with paging and date filters for reconciliation and tax reporting.
Card & cashback data — Retrieve Guaranteed, Platinum, and Black card statements, 1.5% cashback accruals, installment plans, and invoice breakdowns for expense management tools.
Investment & wallet balances — Read CDB positions (107%–120% of CDI), wallet yields and guaranteed-limit balances for PFM dashboards, treasury sync, and internal audit.
Merchant & PJ flows — Tap-to-Pay sales, PJ cashback, and top-up reseller commissions exposed as structured events for accounting integrations and settlement reports.

Feature modules we deliver for RecargaPay

Authentication & session

OAuth 2.0 / OIDC-based login mapping, CPF/CNPJ identification, MFA challenge handling (SMS/email/device), and long-lived refresh flow. We document the mobile app's authorization sequence and wrap it into a stable service-to-service token exchange, including device binding and session rotation for long-running jobs.

Pix statement & receipts

Query sent and received Pix by date range, key type (CPF/email/phone/EVP), QR code, or counterparty bank. Each record is normalized into endToEndId, payer/payee, bank ISPB, value, status, and raw receipt blob for audit storage and tax reporting.

Card transaction feed

Stream authorizations, captures, refunds, and installment plans for Guaranteed / Platinum / Black cards. Includes cashback accrual (1.5% on all purchases), merchant MCC, currency for international purchases, and 3DS/contactless flags for fraud review.

CDB & wallet yield sync

Daily snapshots of CDB positions (daily liquidity at 107% CDI, 24-month at 120% CDI up to R$5,000), wallet balance yields (110% of CDI), FGC coverage flags, and maturity schedules. Ideal for PFM and wealth dashboards that aggregate Brazilian fixed-income products.

Bill, boleto & top-up history

Pull payment receipts for utility bills, telecom top-ups (Vivo, TIM, Claro, Claro Nxt, Correios, Surf), and transport recharges across São Paulo, Recife, Vitória, São Luís, Maceió, Salvador and Curitiba. Enables spend-categorization engines and loyalty back-offices.

Merchant PJ & Tap-to-Pay

For the PJ account line: 0.75% debit / 3.09% credit acceptance via Tap-to-Pay, installment collection, and settlement events. We expose the merchant POV so marketplaces and ERP tools can book sales, fees, and 110% CDI balance growth on settled funds.

Data available for integration

The table below catalogues the RecargaPay surfaces we typically wrap into a data contract. Every row is tied to a concrete screen in the super app and delivered as a versioned JSON endpoint or batch export.

Data typeSource (app screen / feature)GranularityTypical use
Pix transactions"Pix" tab — sent, received, scheduled, refundsPer transaction, with endToEndId and ISPB routingReconciliation, anti-fraud rules, tax export
Card transactions & invoicesGuaranteed / Platinum / Black card viewsPer authorization + monthly invoice rollupExpense tracking, cashback validation, accounting
CDB investment positions"Investimentos" module (daily liquidity, 24M CDB)Daily snapshot with gross/net yield and FGC flagWealth dashboards, risk control, portfolio analytics
Wallet and guaranteed-limit balancesHome screen balance & "Limite Garantido"Real-time (on-demand) + end-of-day snapshotTreasury, cash-flow forecasting, credit scoring
Bills, boletos, top-ups"Pagar contas", "Recarga" screensPer payment, with barcode/convênio code and receiptSpend categorization, loyalty, back-office posting
PJ merchant salesTap-to-Pay / PJ account dashboardPer sale with fee breakdown and settlement dateERP sync, settlement reports, marketplace rollups
Personal loan & BNPL"Empréstimo" & "Parcelar Pix" flowsPer contract with rate (up to 18% p.m.) and termCredit bureau sync, collections, compliance audit
Referral & cashback ledger"Indique e ganhe" R$20 programPer event creditLoyalty engines, growth analytics

Typical integration scenarios

1. Accounting & Receita Federal reporting

Context: SMBs and accountants that need to close books monthly. Data involved: Pix statement, card invoices, boleto payments, PJ sales. Mapping: we pull the full /statements feed, tag each row with LGPD-minimized fields, and emit SPED / e-Financeira-friendly CSV so bookkeepers feed ContaAzul or Omie without manual screenshots.

2. PFM aggregation alongside Nubank & Inter

Context: a personal finance app consolidating Brazilian accounts. Data involved: RecargaPay wallet balance, CDB positions, card transactions. Mapping: our adapter normalizes payloads into the Open Finance Brasil v2 resource model (accounts, credit-cards-accounts, investments/bank-fixed-incomes) so one pipeline serves multiple institutions.

3. Credit decisioning & affordability checks

Context: a lender evaluating a borrower who uses RecargaPay as primary account. Data involved: inflow/outflow Pix, recurring bill payments, BNPL "Parcelar Pix" history. Mapping: we compute 3/6/12-month income stability and debt-to-income indicators and expose them as scoring features, aligning with BCB credit-information sharing rules.

4. Merchant reconciliation for Tap-to-Pay sellers

Context: a franchise receiving payments on multiple RecargaPay PJ accounts. Data involved: sales events, 0.75%/3.09% fee deductions, daily 110% CDI accruals, settlement windows. Mapping: we emit a settlement ledger webhook matching Pix receipt endToEndId to each order in the POS, eliminating end-of-day blind spots.

5. Compliance audit & consent lifecycle

Context: a regulated institution that needs to justify every data pull. Data involved: consent IDs, scopes, expiry (max 365 days under Open Finance Brasil), and revocation events. Mapping: we persist consent records, emit ANPD-ready access logs, and support user-initiated portability or deletion requests under LGPD Article 18.

Technical implementation & deliverables

Deliverables checklist

  • OpenAPI 3.1 specification for every RecargaPay resource we expose
  • Protocol analysis report: auth chain, device binding, header signing, TLS pinning
  • Runnable source in Python or Node.js with retry, pagination, and rate-limit backoff
  • Pluggy-compatible connector adapter for Open Finance Brasil pipelines
  • Integration tests, Postman collection, and synthetic CPF test harness
  • LGPD + Open Finance Brasil compliance checklist and DPO-ready evidence pack

Auth & session bootstrap (pseudocode)

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

{
  "document": "12345678901",          // CPF or CNPJ
  "password": "<hashed-client-side>",
  "device_id": "9e7c-...-41ab",
  "mfa": { "channel": "sms", "code": "482913" }
}

// 200 OK
{
  "access_token": "eyJhbGciOi...",
  "refresh_token": "rt_9af2...",
  "expires_in": 1800,
  "scopes": ["pix.read", "cards.read", "investments.read"]
}

Pix statement query (pseudocode)

POST /api/v1/recargapay/pix/statement
Authorization: Bearer <ACCESS_TOKEN>
Content-Type: application/json

{
  "account_id": "acc_01HZ...",
  "from_date": "2026-03-01",
  "to_date":   "2026-03-31",
  "direction": "all",   // in | out | all
  "page": 1,
  "page_size": 200
}

// 200 OK — normalized Open Finance Brasil schema
{
  "data": [{
    "transaction_id": "pix_01HZ...",
    "end_to_end_id": "E184085752026031512001abcd12345",
    "type": "PIX_OUT",
    "amount": { "currency": "BRL", "value": 189.90 },
    "counterparty": { "name": "Fornecedor X", "ispb": "60746948", "key_type": "CNPJ" },
    "booking_date": "2026-03-15",
    "status": "SETTLED"
  }],
  "pagination": { "page": 1, "total_pages": 4 }
}

Webhook: card authorization event

POST https://your-backend.example.com/webhooks/recargapay
X-Signature: sha256=6d8b...
Content-Type: application/json

{
  "event": "card.authorization",
  "occurred_at": "2026-04-18T14:22:07Z",
  "card": { "product": "PLATINUM", "last4": "4217" },
  "merchant": { "name": "Uber BR", "mcc": "4121" },
  "amount": { "currency": "BRL", "value": 36.80 },
  "cashback_bps": 150,
  "installments": 1,
  "status": "APPROVED"
}

// Expected 2xx within 5s, else retry with exponential backoff.

Screenshots from RecargaPay (tap to enlarge)

Each screen below corresponds to a data surface we can map into an API contract — from the Pix keypad and cashback card view to the CDB investment and merchant dashboard.

RecargaPay screenshot 1 RecargaPay screenshot 2 RecargaPay screenshot 3 RecargaPay screenshot 4 RecargaPay screenshot 5 RecargaPay screenshot 6 RecargaPay screenshot 7 RecargaPay screenshot 8

Compliance & privacy

Every delivery is scoped against the Brazilian regulatory stack. RecargaPay operates as a Payment Institution under Banco Central do Brasil (BCB) supervision and is already a participant inside the Open Finance Brasil directory, which means authorized data sharing can flow through the officially certified FAPI 1.0 + OAuth 2.0 / OpenID Connect channel (consent API with a maximum duration of 365 days).

  • Open Finance Brasil — FAPI-compliant APIs, dynamic client registration, consent and resources endpoints, and reciprocity obligations for licensed institutions.
  • LGPD (Lei 13.709/2018) — purpose limitation, data minimization, DPO appointment, ANPD breach notification, and Article 18 data-subject rights (access, correction, portability, deletion).
  • BCB Resolução nº 1/2020 & Circular 4.015 — consent lifecycle, access logs, and customer complaint procedures for Open Finance participants.
  • PCI DSS — for any leg of the integration touching card PAN; RecargaPay itself is PCI certified for payments.

Where a direct Open Finance connection is not yet available for a given scope, we rely on user-authorized screen flows, store consent artefacts, mask PII in non-production, and deliver an audit-ready record so your DPO can demonstrate lawful processing under the LGPD.

Data flow & architecture

A minimal pipeline looks like this:

  1. Client app / consent screen — user authenticates with CPF/CNPJ, password, MFA, and grants scope-limited consent.
  2. Ingestion API — our adapter calls RecargaPay or Open Finance Brasil resources (accounts, transactions, credit-cards, investments) with rate-limit-aware pagination.
  3. Normalization & storage — payloads are cleaned, deduped by endToEndId / invoice id, and persisted in encrypted Postgres or S3 buckets with LGPD-tagged retention.
  4. Delivery — downstream consumers receive REST endpoints, webhooks, CSV/Excel exports, or a Kafka topic, with full consent and access logs.

Market positioning & user profile

RecargaPay is a B2C-first super app headquartered in São Paulo, backed by IDB Invest and other institutional investors, with Android and iOS reach across every Brazilian state. Its 13 million+ active users skew toward the mass-market and under-banked segment — people who top up prepaid phones, recharge transit cards, pay bills with installments, and use Pix funded by credit cards because they lack a traditional bank limit. A fast-growing PJ (business) base of micro-merchants uses the Tap-to-Pay line to accept cards on a phone. This profile makes RecargaPay particularly interesting for accounting SaaS, credit bureaus, gig-economy platforms, and neobanks looking to understand income flows outside the traditional Nubank/Inter/Itaú footprint.

Similar apps & the integration landscape

Brazilian users rarely rely on a single wallet. An integration that works for RecargaPay typically needs to sit next to the following apps — we handle each one with the same OpenData / Open Finance Brasil playbook.

  • Nubank — the largest neobank in Latin America, holding checking accounts, credit cards, and NuInvest positions; cross-app reconciliation with RecargaPay is a frequent request for PFM and lending.
  • PicPay — a direct peer in the Pix + cashback + wallet segment; unified statement exports across PicPay and RecargaPay help merchants track promotions.
  • Mercado Pago — Mercado Livre's payments arm with strong marketplace and QR acceptance; sellers often consolidate Mercado Pago and RecargaPay Tap-to-Pay revenue.
  • PagBank (PagSeguro) — acquirer + bank combo widely used by SMBs, with heavy Pix and boleto volumes worth syncing alongside RecargaPay PJ.
  • Banco Inter — full-service digital bank with investments, cards, and shopping; Inter + RecargaPay is a common pairing for users chasing CDB yield.
  • C6 Bank — digital bank with multi-currency Global Account; relevant for cross-border spend analysis combined with RecargaPay's domestic footprint.
  • Will Bank — credit-card-led fintech whose users frequently keep RecargaPay as a Pix funding source.
  • Next (Bradesco) — Bradesco's mobile-first bank targeting younger customers; crossover users appreciate Pix-over-credit from RecargaPay.
  • Digio — a card-centric digital bank; cashback aggregators often pair Digio with RecargaPay for maximum 1.5%+ returns.
  • AstroPay — a global wallet popular with travellers and foreigners paying in BRL; useful for cross-border reconciliation alongside RecargaPay.

These apps co-exist in most Brazilian wallets, so an integration platform that understands RecargaPay's Pix, card, and CDB surfaces usually ends up needing a coherent adapter strategy for Nubank, PicPay, Mercado Pago, PagBank, Inter, C6, Will, Next, Digio, and AstroPay as well.

About us

We are an independent studio focused on fintech and open-data API integration, working primarily with overseas clients who need Brazilian data surfaces without operating local infrastructure themselves. The team includes engineers with background in Latin American banks, payment gateways, mobile protocol analysis, and cloud platforms.

  • Payments, digital banking, investments, lending, and cross-border clearing
  • Open Finance Brasil connectors and certification pre-checks
  • Custom Python / Node.js / Go SDKs, test harnesses, and Pluggy-compatible adapters
  • Full pipeline: protocol analysis → build → validation → LGPD-ready documentation
  • Source code delivery from $300 — runnable API source code plus full documentation; pay after delivery upon satisfaction
  • Pay-per-call API billing — access our hosted RecargaPay-compatible endpoints and pay only per call, no upfront cost

Contact

For a quote, NDA, or to share RecargaPay-specific requirements (scopes, volumes, region), open our contact page. We respond on business days within 24 hours.

Open contact page

Tell us: target scopes (Pix, cards, CDB, PJ), expected QPS, preferred delivery (source code vs. hosted API), and any existing sandbox credentials.

Engagement workflow

  1. Scope confirmation: which RecargaPay surfaces (Pix statement, card invoices, CDB, PJ sales) and what SLA.
  2. Protocol analysis and API design — 2 to 5 business days depending on complexity.
  3. Build and internal validation — 3 to 8 business days, including synthetic CPF harness.
  4. Docs, Postman collection, and automated test cases — 1 to 2 business days.
  5. Handover with compliance pack; typical first delivery is 5 to 15 business days.

FAQ

What do you need from me?

Scope (e.g. Pix statements, card transactions, CDB positions), expected volumes, and ideally a test CPF/CNPJ or sandbox credential. If you plan to go via Open Finance Brasil, share your institution's role (receiver/transmitter).

How long does delivery take?

Typically 5–12 business days for the first API drop plus documentation; Open Finance Brasil certification work, if required, extends the timeline based on Diretório Central slots.

How do you handle compliance?

Authorized or documented public APIs only, with consent records, access logs, data-minimization guidance, PII masking in non-prod, and NDAs when required — aligned with LGPD and Open Finance Brasil obligations.

Can you bill per call instead of per project?

Yes — we can host the integration and bill per call (Pix statement fetch, card transaction pull, CDB snapshot, etc.), which is ideal for teams testing RecargaPay data before committing to a full build.
📱 Original app overview — RecargaPay: Pix Cartão e Conta (appendix)

RecargaPay: Pix Cartão e Conta (package com.recarga.recarga) is a Brazilian super app operated by RecargaPay Payment Institution Ltda. (CNPJ 11.275.560/0001-75), licensed by the Banco Central do Brasil. More than 13 million people use it for everyday payments, credit, and investments. It is available on Android and iOS, and its customer service line is 0800 202 0019 (help center at www.recargapay.com.br/contato).

Pix with any credit card. Users can make a Pix payment funded by a credit card — from 3.99% — with up to 12 installments, generate QR codes, and register their Pix key directly in the app.

RecargaPay cards with 1.5% cashback on every purchase and no annual fee. The line-up includes the Guaranteed card (limit built from R$10, instant approval, no credit analysis), the Platinum card (up to R$10,000 pre-approved with car insurance and purchase protection; annual fee waived with R$1,000/month spend), and the Black card (up to R$30,000, travel insurance, VIP lounge access, waived with R$5,000/month spend). All cards work internationally.

Investments and yield. CDBs with above-market returns — daily liquidity at 107% of CDI with FGC protection, and 24-month CDB at 120% of CDI up to R$5,000 — available for CPF and CNPJ. Wallet balances and the guaranteed card limit automatically earn up to 110% of CDI, with earnings usable at any time. Past performance does not guarantee future returns and all investments carry risk.

Instant personal loans. Available 24/7, fully digital, accepting negative-score customers; the sample rate is 15% per month (477.76% per year) with a maximum of 18% per month, and terms between 3 and 6 months. An illustrative R$700 loan over 6 months yields installments of R$188 and a CET of 15.43% per month.

Everyday utility. Free digital account with no monthly fee; mobile top-ups for Vivo, TIM, Claro, Claro Nxt, Correios and Surf; payment of water, electricity, internet, telephone and bank slips; installment payments up to 12x via credit card, boleto, or Pix; and transportation top-ups in São Paulo, Recife, Vitória, São Luís, Maceió, Salvador, Curitiba and more.

For businesses. Free PJ account with no monthly fee, PJ credit card with 1.5% cashback and no annual fee, bill-slip acceptance paying up to R$1 per invoice, top-up reselling with up to 5% commission, and Tap-to-Pay that turns the phone into a card machine (0.75% debit / 3.09% credit; sales balance automatically earns 110% of CDI).

Security and references. RecargaPay is PCI certified and transactions run over SSL. The app also runs a referral program that gives R$20 per friend who signs up.

  • Package ID: com.recarga.recarga
  • Operator: RecargaPay Instituição de Pagamento Ltda. — CNPJ 11.275.560/0001-75
  • Supervisor: Banco Central do Brasil (BCB)
  • Certification: PCI DSS; Open Finance Brasil participant
  • Customer service: 0800 202 0019 — www.recargapay.com.br/contato