Bi en Línea API integration services (Banco Industrial Guatemala)

Authorized protocol analysis, account login, statement export, and QR/remittance APIs aligned with OpenFinance and OpenBanking patterns

From $300 · Pay-per-call available
OpenData · OpenFinance · Protocol analysis · Guatemala digital banking

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.

Account login & KYC mirror — In 2024 Banco Industrial rolled out DPI (Guatemalan national ID) plus selfie onboarding inside Bi en Línea; we mirror that flow with token-based OAuth-style sessions, biometric attestation, and refresh handling for downstream apps.
Statement & balance APIs — Multi-currency (GTQ / USD) statement export with paging, date filters, and category tagging — emitted as JSON, Excel, or PDF for accounting and reconciliation pipelines.
QR & wallet rails — Bridge into the Bi / Cuik / Zigi QR payment network and Google Wallet hand-off; receive real-time payment notifications and merchant settlement events.
Remittance integration — In December 2025 Banco Industrial and Intermex launched the Zigi remittance app, with SukuPay infrastructure delivering US→Guatemala transfers for a $0.99 flat fee; we expose remittance-receipt webhooks for fintechs that need to trigger downstream events.

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 typeSource screen / featureGranularityTypical use
Account balances"Mis cuentas" — quetzales / dollars, checking / savingsReal-time, per accountCash-flow dashboards, treasury reconciliation
Transaction historyMovement detail per accountPer-transaction, ISO timestamp + amount + counterpartyAccounting sync, ERP feeds, audit
Statement exports"Estado de cuenta" PDFsMonthly, CSV/PDF/JSON normalizationLoan underwriting, KYC enrichment
QR payment eventsBi / Cuik / Zigi QR networkEvent-level, includes merchant ID and categoryReconciliation, loyalty, fraud signals
Card metadata & limitsCard management modulePer-card: status, temporary block, credit limitSpend control, expense management
Bill payment receipts2,300+ utilities & service billersPer-receipt, biller code + amount + referenceCustomer support automation, invoice matching
Remittance receiptsBanco Industrial / Zigi remittance hand-offPer-event: sender corridor, FX rate, feeCompliance, AML reporting, household finance apps
Personal finance categoriesIn-app spending trackerPer-transaction tagPFM 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:

  1. 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.
  2. 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.
  3. 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.
  4. 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.

Bi en Línea screenshot 1 Bi en Línea screenshot 2 Bi en Línea screenshot 3 Bi en Línea screenshot 4 Bi en Línea screenshot 5 Bi en Línea screenshot 6 Bi en Línea screenshot 7 Bi en Línea screenshot 8 Bi en Línea screenshot 9 Bi en Línea screenshot 10

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.

BAC Banca MóvilBanca Móvil BAC (Banco de América Central) holds account, card, and transfer data for Central American customers; cross-bank reconciliation is a frequent request.
GTCAppBanco G&T Continental's retail app — accounts, credit qualification, bill payments. Often paired with Bi en Línea in personal-finance dashboards.
BANRURAL AppBanrural's mobile app, strong in rural and community banking. Holds account, transfer, and bill-payment data; consistently a top finance app in Guatemala.
Bamapp (Banco Agromercantil)BAM's mobile app supports QR scanning at stores and standard retail banking flows; sits alongside Bi en Línea in many SME wallets.
Banco Promerica GuatemalaPromerica Group's online and mobile banking. Common counterparty for transfers and a frequent target for unified statement exports.
Bi BankingBanco Industrial's enterprise app for companies — multi-user authorization, payroll, and bulk payments. The B2B counterpart to Bi en Línea.
CuikBanco Industrial's retail wallet brand integrated with Bi en Línea QR rails. Holds wallet balances and QR receipts.
ZigiThe 2025 Banco Industrial × Intermex remittance app, powered by Vault Core (Thought Machine) and SukuPay. Unlocks US→Guatemala remittance receipts at $0.99 flat.
SukuPayThe remittance infrastructure embedded inside Zigi; integration partners often want event-level corridor data for AML and reporting.
Tigo MoneyThe Tigo Money mobile wallet, a frequent counterparty for top-ups, P2P transfers, and bill payments in Guatemala and the wider region.

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

  1. Scope confirmation: target scenarios (login, statements, QR, remittance) and data scopes.
  2. Protocol analysis & API design — 2–5 business days, complexity-dependent.
  3. Build & internal validation against the Bi en Línea sandbox or replay traces — 3–8 business days.
  4. Documentation, sample clients, and signed test cases — 1–2 business days.
  5. Typical first delivery: 5–15 business days; third-party approvals or merchant onboarding may extend timelines.

Contact

For quotes, sandbox access, or to submit your target Bi en Línea scenario:

Contact page

FAQ

Does Bi en Línea offer a public API for third-party developers?

Banco Industrial does not publish a general open-banking API for retail Bi en Línea accounts. We deliver authorized integrations through documented merchant payment endpoints (Pay Bi), Bi Banking enterprise channels, and account-holder-consented protocol bridges so that transaction history, balances, and QR payment flows can be exposed to your stack.

What data can you actually extract or sync from Bi en Línea?

With consented access, we can stream transaction history, account balances in quetzales and dollars, statement exports (PDF/JSON/Excel), card spending limits, QR payment confirmations across Banco Industrial, Cuik and Zigi networks, remittance receipts, and bill-payment receipts from the 2,300+ providers supported in-app.

How long does a Bi en Línea integration take to deliver?

A typical first delivery takes 5 to 15 business days: protocol analysis 2–5 days, build and validation 3–8 days, and documentation 1–2 days. Multi-account, remittance, or Soundbox-style merchant scenarios may add a few days for sandbox alignment.

Is integrating Bi en Línea legal under Guatemalan law?

Yes, when integrations operate under explicit account-holder consent, documented merchant agreements, or authorized B2B contracts. Guatemala has not yet enacted a general open-banking framework, so we follow Superintendencia de Bancos de Guatemala (SIB) guidance, IVE anti-money-laundering registration where applicable, and the new Credit Card Law (Decree 2-2024) where relevant.
📱 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.

Last updated: 2026-05-08