Connect Bi en Línea accounts, payments, and remittance data to your stack — under authorization
Bi en Línea is the retail banking app of Banco Industrial, Guatemala's largest bank, with more than one million Android downloads alone. The app holds rich, server-backed financial data: multi-currency account balances, transaction history, QR payment receipts, card spending limits, remittance arrivals, and bill payments routed through 2,300+ Guatemalan service providers. We help fintechs, ERP vendors, accounting platforms, and remittance operators expose that data through clean, OpenBanking-style APIs and runnable source code.
Data available for integration (OpenData perspective)
The table below summarizes the structured data Bi en Línea exposes to its account holders inside the app. Under explicit consent, each row maps to a server-backed endpoint that we can mirror, normalize, and deliver as an integration-ready API. Granularity reflects what we have observed in the live app and the public Banco Industrial documentation.
| Data type | Source screen / feature | Granularity | Typical use |
|---|---|---|---|
| Account balances | "Mis cuentas" — quetzales / dollars, checking / savings | Real-time, per account | Cash-flow dashboards, treasury reconciliation |
| Transaction history | Movement detail per account | Per-transaction, ISO timestamp + amount + counterparty | Accounting sync, ERP feeds, audit |
| Statement exports | "Estado de cuenta" PDFs | Monthly, CSV/PDF/JSON normalization | Loan underwriting, KYC enrichment |
| QR payment events | Bi / Cuik / Zigi QR network | Event-level, includes merchant ID and category | Reconciliation, loyalty, fraud signals |
| Card metadata & limits | Card management module | Per-card: status, temporary block, credit limit | Spend control, expense management |
| Bill payment receipts | 2,300+ utilities & service billers | Per-receipt, biller code + amount + reference | Customer support automation, invoice matching |
| Remittance receipts | Banco Industrial / Zigi remittance hand-off | Per-event: sender corridor, FX rate, fee | Compliance, AML reporting, household finance apps |
| Personal finance categories | In-app spending tracker | Per-transaction tag | PFM dashboards, budgeting tools |
Typical integration scenarios
1. Accounting & ERP sync for Guatemalan SMEs
Many small businesses run on Bi en Línea retail accounts before graduating to Bi Banking. We expose a daily transaction-history endpoint that normalizes movements into ISO-8601 timestamps, GTQ/USD amounts, and counterparty references, then pipes them into QuickBooks, Odoo, or in-house ERPs. Reconciliation jobs match QR receipts and bill payments to invoices using merchant code and reference number.
2. Remittance trigger pipelines
With the December 2025 Zigi/Intermex/SukuPay launch, US-to-Guatemala remittances now arrive in seconds. Aid programmes, payroll providers, and household-finance apps want to react to those arrivals. We deliver a webhook stream that fires on remittance settlement with corridor, FX rate, fee, and beneficiary masking — letting customer apps top up wallets, trigger SMS, or kick off downstream payouts.
3. Credit underwriting via consented statement export
Lenders need 3–12 months of bank statements to underwrite a loan. We offer a consented "statement-pull" API that authenticates with the user's Bi en Línea credentials, retrieves the official PDF estado de cuenta, parses it into structured JSON (balances, recurring deposits, salary patterns), and ships it to the lender's underwriting model — fully aligned with Superintendencia de Bancos secrecy expectations.
4. Merchant QR & settlement reporting
Retailers accepting Bi / Cuik / Zigi QR payments want a single feed showing daily settlement, refund events, and dispute states. Our merchant-side API aggregates QR confirmations, matches them to POS line items by reference, and emits T+1 settlement files for finance teams. The same feed powers Soundbox-style audible merchant alerts for low-tech storefronts in Guatemala City and Quetzaltenango.
5. Personal-finance & budgeting apps
Bi en Línea's in-app spending tracker shows the appetite for PFM tooling. We provide a consented category-tagged transaction stream so independent PFM apps (Bilt-style coaches, expense splitters, savings nudges) can offer Guatemalan users a unified view across Bi en Línea, BAC, GTCApp, and BANRURAL accounts — without forcing each user to maintain spreadsheets.
Technical implementation
Authorization & session bootstrap
// Step 1: bootstrap a consented Bi en Línea session
POST /api/v1/bienlinea/auth/login
Content-Type: application/json
X-Consent-Id: cs_8f1d...
{
"user_dpi": "<Guatemalan DPI hash>",
"device_fingerprint": "android-13-pixel-7",
"biometric_token": "<FaceID|Fingerprint attestation>"
}
200 OK
{
"access_token": "ey...",
"refresh_token": "rt_...",
"expires_in": 900,
"scopes": ["accounts.read","statements.read","payments.qr.read"]
}
Statement export (multi-currency)
// Step 2: pull a normalized statement
POST /api/v1/bienlinea/statement
Authorization: Bearer <ACCESS_TOKEN>
{
"account_id": "gt-bi-001-1234",
"currency": "GTQ",
"from_date": "2026-04-01",
"to_date": "2026-04-30",
"format": "json"
}
200 OK
{
"account_id": "gt-bi-001-1234",
"opening_balance": 4321.55,
"closing_balance": 5102.18,
"movements": [
{"ts":"2026-04-03T14:22Z","amount":-180.00,
"type":"qr_payment","merchant":"FARM_GLOBAL_GT",
"category":"health"},
{"ts":"2026-04-15T09:01Z","amount":+5800.00,
"type":"remittance","corridor":"US-GT","fx":7.78}
]
}
Webhook: remittance & QR payment events
// Step 3: subscribe to real-time events
POST /api/v1/bienlinea/webhooks
Authorization: Bearer <ACCESS_TOKEN>
{
"url": "https://your-app.com/hooks/bi",
"events": ["payment.qr.confirmed",
"remittance.received",
"card.limit.changed"],
"secret": "whsec_..."
}
// Sample webhook delivery
POST /hooks/bi (signed with HMAC-SHA256)
{
"event":"remittance.received",
"ts":"2026-05-08T18:45:11Z",
"amount":250.00,"currency":"USD",
"fee":0.99,"network":"zigi/sukupay",
"beneficiary_masked":"****1234"
}
Compliance & privacy
Regulatory framing
Guatemala has not yet enacted a comprehensive open-banking framework. Banking secrecy is enforced under the Banks and Financial Groups Law, which requires institutions to keep client information confidential except where the client consents or a legal exception applies. Every Bi en Línea integration we deliver therefore stands on documented consent (account-holder authorization or merchant agreement) and aligns with guidance from the Superintendencia de Bancos de Guatemala (SIB).
Where the integration touches payments, we follow the Monetary Board's technological-risk regulations, register as an Obligated Person before the Special Verification Intendancy (IVE) when payment-flow volume requires it, and apply the new Credit Card Law (Decree 2-2024) for any card-related data. Cross-border remittance flows additionally honour US BSA/AML obligations on the originating leg.
Privacy & data minimization
We only request the scopes a use case actually needs — for example, a budgeting app gets statements.read but not payments.write. PII is hashed at the edge (DPI numbers are never persisted in clear), tokens rotate every 15 minutes, and we keep a 12-month consent log so account holders can revoke access at any time. For comparative reference, see the open banking framing on Wikipedia and the broader Latin-American adoption picture documented by industry trackers.
Data flow & architecture
A typical Bi en Línea integration follows a four-stage pipeline:
- Client / consent layer. The end user authorizes access from inside the Bi en Línea app or our consent screen, producing a signed consent token tied to a specific scope set and expiry.
- Ingestion / protocol bridge. Our protocol-analysis service speaks Bi en Línea's mobile transport, refreshes sessions, and normalizes responses into a stable schema regardless of upstream UI changes.
- Storage & transformation. Movements, balances, and webhook events land in a per-tenant store with field-level encryption; transformations enrich each event with categories, FX rates, and counterparty metadata.
- API / analytics output. Downstream systems consume REST/GraphQL endpoints, signed webhooks, or SFTP exports for accounting, BI, and underwriting use cases.
Market positioning & user profile
Bi en Línea is the retail mobile-banking front door of Banco Industrial, Guatemala's largest bank by assets and the anchor of Corporación Bi. Active users are concentrated in Guatemala — both urban (Guatemala City, Quetzaltenango, Antigua) and rural — with a strong long tail of remittance-receiving households tied to migrant senders in the United States. The app reaches more than one million Android installs and ranks consistently inside the top finance apps in Guatemala on Google Play. Adoption skews B2C with growing B2B usage by SMEs and freelancers, and the platform supports both Android and iOS with feature parity.
Screenshots
Click any thumbnail to view a larger version. Screenshots are sourced from the Bi en Línea Google Play listing.
Similar apps & integration landscape
Teams that integrate Bi en Línea typically need unified views across the wider Guatemalan and Central American mobile-banking ecosystem. The following apps appear repeatedly in research and customer requests; they are listed here as part of the broader integration landscape, not as competitors.
What we deliver
Deliverables checklist
- API specification (OpenAPI / Swagger) tailored to Bi en Línea scopes
- Protocol & auth flow report (DPI/biometric login, token refresh, session pinning)
- Runnable source for login, statement, QR-event, and remittance APIs (Python / Node.js)
- Webhook signing & retry harness with HMAC-SHA256 verification samples
- Automated tests (sandbox + replay) and Postman collections
- Compliance pack: SIB framing, IVE/AML notes, consent and retention guidance
About OpenFinance Lab
We are an independent studio focused on fintech and open-data API integration. Our team includes engineers from regional banks, payment gateways, and protocol-analysis backgrounds. We know the Guatemalan banking stack, SIB and IVE expectations, and Latin-American privacy practice, and we ship end-to-end financial APIs under security and compliance constraints.
- Payments, digital banking, insurtech, and cross-border clearing
- Enterprise API gateways, security reviews, and SOC-2-friendly logging
- Custom Python / Node.js / Go SDKs and replay test harnesses
- Source code delivery from $300 — runnable API code and full documentation; pay after delivery upon satisfaction
- Pay-per-call API billing — access our hosted endpoints and pay only per call, no upfront cost
Engagement workflow
- Scope confirmation: target scenarios (login, statements, QR, remittance) and data scopes.
- Protocol analysis & API design — 2–5 business days, complexity-dependent.
- Build & internal validation against the Bi en Línea sandbox or replay traces — 3–8 business days.
- Documentation, sample clients, and signed test cases — 1–2 business days.
- Typical first delivery: 5–15 business days; third-party approvals or merchant onboarding may extend timelines.
FAQ
Does Bi en Línea offer a public API for third-party developers?
What data can you actually extract or sync from Bi en Línea?
How long does a Bi en Línea integration take to deliver?
Is integrating Bi en Línea legal under Guatemalan law?
📱 Original app overview (Bi en Línea — appendix)
With Bi en Línea, managing personal finances is faster, safer, and more original. Users can create their account directly from the app using only their DPI (Guatemalan national identification document) and a selfie — without passwords or paperwork. Identity is the access path: activate biometrics and log in to your bank in seconds. The app also lets non-customers open an account without queueing and without burning mobile data.
What can you do with Bi en Línea?
- Open digital accounts in quetzales, dollars, checking and savings; apply for quick loans and credit cards in one tap.
- Make national and international transfers and trade currencies from your phone.
- Pay basic services — phone, internet, electricity, water, university tuition — through 2,300+ providers.
- Receive remittances even if you are not a Banco Industrial customer.
- Send and receive contactless QR payments across Banco Industrial, Cuik, and ZIGI networks.
- Use the app as a digital wallet and pay online or with Google Wallet.
- Withdraw cash without a card by generating a QR code at any Bi ATM.
- Receive real-time notifications for every banking transaction.
- Buy mobile top-ups directly from the app.
- Manage cards: temporary blocks, credit increases, spending limits and more.
- Buy life, health, motorcycle, and car insurance from inside the app.
- Track personal finances by category in the in-app PFM module.
Security is a first-class concern: facial recognition, Face ID, or fingerprint protect every login, and Bi en Línea's defenses are designed so that only the rightful account holder can act on the account. Support is available on WhatsApp at 2411-6000 and at 1717, option 3.