OpenBanking-grade protocol analysis, statement export APIs, transfer automation and soft-token flows for the Orco Bank App — delivered as authorized source code.
The Orco Bank App® gives personal and business customers access to accounts, local and international transfers, soft-token generation, transaction approvals, address books, FX rates and travel notices. We specialize in analyzing its traffic patterns and delivering a compliant, documented API layer on top — so your treasury, ERP or analytics system can read statements, reconcile XCG (Caribbean guilder) balances and approve transfers without operators logging into the app by hand.
Mirror the "View and access to all your Orco Bank accounts" capability as a /accounts endpoint returning per-product balances (current, savings, business), currency (XCG, ANG, USD), and account status. Typical use: nightly treasury dashboards and consolidated balance views across Curaçao and Sint Maarten entities.
Paginated access to transaction lists with filters for date, amount, counterparty and channel. Use cases: automated bookkeeping, ERP posting (Exact, SAP Business One, Odoo), and tax-period statement packs that include both pre- and post-XCG transition entries.
Create local, inter-island and international transfers, maintain an address book of beneficiaries, and route dual-approval flows for corporate accounts. Deliverable includes retry, idempotency and a /transfers/{id}/approve endpoint mapped to the app's "review, approve or cancel pending transaction" step.
Programmatic soft-token codes for logging into Orco Bank Online® or approving transfer requests, plus biometric-equivalent re-auth for server-side automation. Useful where treasury bots must complete a signed operation without a human opening the Orco Bank App® each time.
Generate the same PDF proof-of-payment the app emails or sends over WhatsApp, plus document upload endpoints that mirror the "Easily upload documents" flow — handy for KYC refresh, loan add-ons and audit archiving.
Expose Orco Bank's published exchange rates (XCG / USD / EUR / ANG legacy) and submit a travel notice for a card before a trip. Used by expense platforms that need rate snapshots and by corporate travel systems that auto-enable cards for overseas use.
The table below maps each data surface of the Orco Bank App® to a realistic OpenData / OpenBanking integration. These fields are derived from the app's public feature list (personal and business banking, transfers, soft token, travel notices, FX rates, document uploads) combined with open-banking patterns seen across Caribbean providers.
| Data type | Source (app screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Account master | Main menu — "View and access to all your Orco Bank accounts" | Per account (product, currency, status) | Treasury dashboard, multi-entity consolidation |
| Balances | Account detail view | Ledger + available + blocked (XCG / ANG / USD) | Liquidity monitoring, cash-sweep triggers |
| Transactions | Statements and pending-transaction list | Per line: date, amount, counterparty, channel, reference | Reconciliation, AP/AR matching, audit |
| Pending approvals | "Review, approve, or cancel a pending transaction" | Per transaction (status, approvers, policy) | Workflow automation for dual-signer corporates |
| Local & international transfers | Transfer module | Beneficiary, purpose, SWIFT / routing fields | Mass payouts, vendor settlement |
| Soft-token events | Soft-token screen | Time-based OTP + transaction binding | Secure server-side signing of Online® operations |
| Address book | Address book maintenance | Beneficiary list with account / IBAN / SWIFT | Pre-vetted payee catalogue, compliance lists |
| FX rates | "Find up-to-date exchange rates" | Daily mid & card rates (XCG, USD, EUR) | Invoice revaluation, travel expense reports |
| Travel notices | "Submit a Travel Notice" | Card, countries, validity window | Card-abroad automation for expats & crews |
| Proof-of-payment documents | "Generate proof of payment" | PDF with payer/payee/amount/ref | Vendor confirmation, tax attachments |
Context: A Willemstad-based trading company runs Odoo and has three Orco Bank current accounts (two XCG, one USD). Data/API: /accounts, /statements?from=&to=, document download for proof-of-payment PDFs. OpenData mapping: nightly pull into Odoo via an OpenBanking-style account-information flow with consent tokens — eliminating manual CSV downloads from Orco Bank Online®.
Context: A tour operator pays 200+ guides across Sint Maarten and Bonaire weekly. Data/API: address-book sync, /transfers batch create, /transfers/{id}/approve with a soft-token code. OpenData mapping: payment-initiation pattern (OpenBanking PIS style) under explicit corporate authorization, with dual-signer policy and full audit trail.
Context: After Orco Bank's April 2025 migration from ANG to the Caribbean Guilder (XCG), auditors need a clean dataset bridging both currencies. Data/API: transaction export with pre_xcg and post_xcg flags, FX snapshots, balance history. OpenData mapping: a normalized JSON feed your audit platform can diff against the general ledger.
Context: A hotel group holds accounts at Orco Bank plus another Caribbean bank and wants one liquidity view. Data/API: /accounts + /balances normalized behind a unified schema. OpenData mapping: aggregator pattern similar to Plaid / Tink / TrueLayer, which openbankingtracker.com explicitly recommends for Orco Bank integrations today.
Context: A fiduciary services firm must log card-abroad use for AML/KYC and audit. Data/API: travel-notice submission + card transactions filtered by country. OpenData mapping: event-driven webhook feed into the compliance platform whenever a new travel notice is created or expires.
POST /api/v1/orcobank/session
Content-Type: application/json
{
"username": "jdoe",
"device_fp": "orco-app-v4.1.1-android",
"mfa": {
"type": "soft_token",
"code": "842193"
}
}
200 OK
{
"session_id": "sess_01HZXW...",
"expires_in": 900,
"scopes": ["accounts.read", "statements.read", "transfers.write"],
"customer_type": "business"
}
GET /api/v1/orcobank/statements
?account_id=ORCO-XCG-000123
&from_date=2026-01-01
&to_date=2026-01-31
&page=1&page_size=200
Authorization: Bearer <SESSION_TOKEN>
200 OK
{
"account_id": "ORCO-XCG-000123",
"currency": "XCG",
"opening_balance": 48210.55,
"closing_balance": 51734.02,
"page": 1,
"items": [
{
"tx_id": "TX20260105X91",
"posted_at": "2026-01-05T13:04:22Z",
"amount": -1250.00,
"counterparty": "SUPPLIER N.V.",
"channel": "LOCAL_TRANSFER",
"reference": "INV-2025-1188",
"currency_original": "ANG",
"xcg_equivalent": -1250.00
}
]
}
POST /api/v1/orcobank/transfers
Authorization: Bearer <SESSION_TOKEN>
Idempotency-Key: 2026-04-20-payroll-0042
{
"debit_account": "ORCO-XCG-000123",
"beneficiary_id": "BENE-44721",
"amount": 3200.00,
"currency": "XCG",
"purpose": "SALARY",
"channel": "LOCAL",
"soft_token_code": "558104"
}
201 Created
{
"transfer_id": "TR-20260420-0042",
"status": "PENDING_APPROVAL",
"approvers_required": 2,
"proof_url": "/documents/proof/TR-20260420-0042.pdf"
}
POST https://your.app/webhooks/orco
X-Orco-Signature: t=1713600000,v1=8a...
{
"event": "transfer.status_changed",
"transfer_id": "TR-20260420-0042",
"previous_status": "PENDING_APPROVAL",
"new_status": "COMPLETED",
"value_date": "2026-04-20",
"audit": {
"approvers": ["jdoe", "msmith"],
"mfa": "soft_token"
}
}
Signed webhooks close the loop for ERP systems so reconciliation doesn't depend on polling.
Caribbean banking sits outside PSD2, but compliance expectations are still strict. Our Orco Bank App® integrations are built around:
A reference pipeline for an Orco Bank App® integration looks like this:
The Orco Bank App® targets retail and SME customers in Curaçao, Bonaire and Sint Maarten, including expats, multi-entity tourism groups and fiduciary service providers. Since Orco Bank's 2023 acquisition of CIBC FirstCaribbean's Curaçao and Sint Maarten operations, its footprint now spans a meaningful share of island retail banking. The app is available on iOS 16+ and Android 8.1+ (version 4.1.x as of 2025), and is primarily used in English, Dutch and Papiamento-speaking markets. Integration demand is highest among SMEs running ERP tools (Exact, Odoo, SAP Business One), hospitality groups consolidating XCG and USD balances, and corporate treasuries needing programmatic transfer approval with soft tokens.
Screens below are from the Orco Bank App® Play Store listing. Tap any thumbnail to view a larger version.
Teams building financial automations in the Dutch Caribbean rarely work with a single bank. When we integrate the Orco Bank App®, customers often also ask about connecting the apps below — so the same pipeline covers every account their business touches.
We frame these apps as part of a single integration landscape — not competitors — because most real projects pull from several of them at once.
Both models include an SLA, signed NDA, and scoped, revocable credentials.
We are an independent technical studio specializing in App interface integration and authorized API integration. Our engineers come from banking, payment gateway, protocol analysis and cloud backgrounds, with hands-on experience in fintech automation across LATAM, the Caribbean, Europe and Asia.
What do you need from me?
How long does delivery take?
How do you handle compliance?
Which programming languages do you ship in?
To get a quote for your Orco Bank App® integration or to discuss a pay-per-call plan, use our contact page. Include: target app name, required flows, call volume estimate and any regional entities involved (Curaçao / Bonaire / Sint Maarten).
The Orco Bank App® is the official mobile banking application for personal and business online banking customers of Orco Bank, one of the Caribbean banks operating in Curaçao, Bonaire and Sint Maarten. The app was launched in September 2021 and has progressively rolled out across account types.
With the Orco Bank App®, customers can manage their personal and business accounts anytime and anywhere. Features include:
Recent milestones: in May 2024 Orco Bank introduced a Customer Service Kiosk at its Landhuis Cerrito branch and launched a Digital Desk with 24/7 online forms for account opening and loan applications. In April 2025 Orco Bank completed its transition from the Netherlands Antillean guilder (ANG) to the Caribbean guilder (XCG), with the Orco Bank App® and Orco Bank Online® updated accordingly. Version 4.1 of the Orco Bank App® shipped in early 2025, followed by 4.1.1 in May 2025 with bug fixes and performance improvements; the app requires iOS 16.0+ or Android 8.1+.
Customer support: customer.support@orcobank.com. Package ID: com.orcobank.app. This page illustrates technical integration positioning for the Orco Bank App® and is produced by an independent integration studio, not by Orco Bank itself.