Protocol analysis + authorized integration to sync savings, airtime top-ups, insurance workflows, and ODESSA Cash QR withdrawals.
ODESSAPP is designed for collaborators of ODESSA-affiliated companies. Depending on the services enabled for your Caja de Ahorro, it supports savings on demand, term savings, express disbursement flows, airtime top-ups, insurance management, and ODESSA Cash withdrawals through QR at OXXO.
Each module below maps a specific ODESSAPP capability to a real OpenData/OpenFinance use case.
We normalize “on-demand savings” balances and related movement history into a transaction ledger so your accounting and treasury can reconcile daily balances and generate month-end reports.
ODESSAPP lets collaborators manage savings across different time horizons. We expose contribution events, schedule metadata (where shown), and lifecycle status for budgeting, forecasting, and benefit analytics.
When the Dispersión Inmediata functionality is enabled, users can withdraw from “Ahorro Vista” and request “Préstamo Exprés” for instant availability. We build an event timeline that helps lenders and compliance teams track flow approval and fund-readiness states.
If your Caja de Ahorro offers airtime services, ODESSAPP supports recarga to different numbers and companies. We integrate the top-up receipts into an itemized ledger to power cost allocation and vendor settlement workflows.
For insured services enabled in the plan, we extract the policy lifecycle you need for onboarding, premium tracking, and operational reporting, so your HR/benefits systems can evidence coverage actions.
ODESSA Cash allows cash withdrawal directly in more than 23,000 OXXO stores across Mexico using a QR generated in the app. We integrate withdrawal requests and outcomes to keep cashflow dashboards aligned with retail handoff events.
We focus on authorized app interface integration and OpenData normalization, not just “data scraping”. After protocol analysis, we deliver working connectors that your backend can use for transaction export, reconciliation, and reporting.
In 2025 ODESSA announced “ODESSA CASH”, enabling collaborators to withdraw savings from ODESSAPP by generating a QR code and using it in OXXO stores (no bank card or bank account required). The flow supports selecting an amount (from $200 to $3,000 per day/transaction context) and generating a QR for instant cash readiness.
We design connectors specifically for this type of QR-driven event so your systems can reconcile “requested vs completed” withdrawal states.
Click any thumbnail to open a larger preview.
We translate ODESSAPP screens and flows into integration-ready datasets, designed for OpenFinance reporting, internal controls, and compliant recordkeeping.
| Data type | Source (screen/feature) | Granularity | Typical use |
|---|---|---|---|
| Collaborator eligibility & account context | Login access and collaborator dashboard | Identity + service flags (which modules are enabled) | Tenant-aware integration and least-privilege routing |
| Ahorro Vista balances + movements | On-demand savings overview and ledger | Daily balance snapshots + transaction entries | Reconciliation, cashflow dashboards, audit logs |
| Term savings operations | Savings to different terms management | Contribution events and lifecycle status | Forecasting, benefit accounting, analytics |
| Express disbursement flow states | Dispersión Inmediata / Préstamo Exprés screens | Request timeline + outcome status | Instant availability reporting and operational controls |
| Airtime top-up receipts | Recarga de tiempo aire module | Itemized top-ups with provider/number metadata (as shown) | Cost allocation, settlement reports, expense verification |
| Insurance policy actions | Insurance contracting and administration | Policy-level and premium-level records (as displayed) | Compliance evidence, HR benefits tracking, analytics |
| ODESSA Cash QR withdrawal requests | Retiro Cash (QR) and OXXO redemption flow | Withdrawal request IDs + status updates | Cashflow reconciliation, fraud monitoring, dispute handling |
Business context: your internal finance team needs daily consistency between collaborator savings activity and your ERP “benefits” ledger.
OpenData/OpenFinance mapping: we export “Ahorro Vista movements” and term savings operations into a normalized transaction ledger, with consistent account IDs and event timestamps. This supports reconciliation jobs, anomaly detection, and month-end closing.
Business context: companies affiliated to ODESSA run operational programs where airtime top-ups are reimbursed or billed back internally.
OpenData/OpenFinance mapping: we build a top-up export dataset from the recarga feature, including amount and provider metadata (as surfaced in ODESSAPP). Your system can allocate costs by collaborator group, period, and provider for settlement and internal controls.
Business context: for programs that rely on instant availability, your managers need a real-time view of “requested vs available” states.
OpenData/OpenFinance mapping: we convert Préstamo Exprés flow states into event timelines. These events can power dashboards, SLA tracking, and compliance evidence that explains how and when funds became available.
Business context: cash withdrawals via ODESSA Cash introduce retail handoff complexity; your operations need reliable reconciliation.
OpenData/OpenFinance mapping: we ingest ODESSA Cash QR withdrawal requests and status updates into a ledger enriched with retail-event identifiers. This supports dispute workflows, fraud monitoring signals, and automated reconciliation rules for treasury.
Business context: HR/benefits governance requires proof of policy actions, premium records, and operational milestones.
OpenData/OpenFinance mapping: we expose insurance management outputs as structured policy events (policy type, premium, and lifecycle status where shown). Your compliance reporting can then attach these events to benefit governance workflows.
We work as an authorized integration studio: protocol analysis to map how ODESSAPP session and transaction flows work, then a connector that exposes them as OpenAPI endpoints for your backend. The snippets below illustrate a reference implementation style for statement/ledger export, QR withdrawal events, and webhook delivery.
POST /api/odessapp/v1/auth/login
Content-Type: application/json
{
"user_id": "collaborator_123",
"platform": "android",
"device": { "model": "Pixel", "os_version": "Android 14" }
}
// Response
{
"access_token": "eyJ...odessapp",
"refresh_token": "r1Z...token",
"expires_in": 3600
}
// Error handling example
// If connector receives 401 TOKEN_EXPIRED:
POST /api/odessapp/v1/auth/refresh
{
"refresh_token": "r1Z...token"
}
GET /api/odessapp/v1/ledger/transactions?account=ahorro_vista&date_from=2026-02-01&date_to=2026-02-28&page_size=200
Authorization: Bearer <ACCESS_TOKEN>
// Response (connector normalized model)
{
"items":[
{
"transaction_id":"tx_20260218_00192",
"service_type":"AhorroVista",
"direction":"IN",
"amount":"1250.00",
"currency":"MXN",
"occurred_at":"2026-02-18T09:41:12-06:00",
"source_ref":"odessapp_screen_tx_detail",
"status":"COMPLETED"
}
],
"next_cursor":"c_9f3a..."
}
POST /api/odessapp/v1/cash/qr-withdrawals
Authorization: Bearer <ACCESS_TOKEN>
Idempotency-Key: 9c2f9d2f-1a8a-4f0b-bc6b-7b9b2c...
Content-Type: application/json
{
"amount":"500.00",
"currency":"MXN",
"qr_mode":"show_to_retail_cashier",
"context":"ODESSA_CASH"
}
// Connector returns a request id + QR payload reference
{
"withdrawal_request_id":"wd_20260318_00077",
"qr_image_url":"/api/odessapp/v1/cash/qr/preview/wd_20260318_00077",
"status":"QR_READY"
}
// Your system receives status updates:
POST /webhooks/odessapp/withdrawal-status
{
"withdrawal_request_id":"wd_20260318_00077",
"status":"REDEEMED_AT_RETAIL",
"redeemed_at":"2026-03-18T13:22:55-06:00",
"source":"OXXO_STORE"
}
For ODESSA/ODESSAPP integrations in Mexico, we build connectors with privacy-by-design. The ODESSA privacy notice describes treatment purposes and user rights (including ARCO rights) for data processing in accordance with the Ley Federal de Protección de Datos Personales en Posesión de los Particulares (LFPDPPP).
On Google Play, the app’s data safety section indicates data handling practices such as encryption in transit and the ability to request data deletion. In our connector, we map this to concrete engineering controls: encrypted transport, scoped tokens, and data minimization in the normalization layer.
We also implement audit logs that store references and outcomes, while avoiding retention of sensitive personal content beyond what your project needs for compliance and reconciliation.
ODESSAPP is positioned as a collaborator-focused financial tool for ODESSA-affiliated companies in Mexico. It is available on Android and iOS and supports benefits administration via ODESSA’s technology platform for “Caja de Ahorro” and “Fondo de Ahorro”, plus enabled services like airtime top-ups and insurance administration. Because access is restricted to eligible collaborators, integration projects typically target B2B operators (HR, benefits administrators, treasury/finance teams) who want OpenData exports for reporting and governance across 50+ employee organizations and larger deployments.
In the integration landscape, partners such as OXXO (for ODESSA Cash QR redemption) and related ODESSA products like ODESSA Tek (insurance-oriented ecosystem) shape what data flows matter for reconciliation and compliance evidence.
Send your target app name and the requirements you want to export (e.g., balances, transactions, airtime receipts, insurance actions, QR cash outcomes). We will deliver API/protocol integration source code for your team to run in production.
We are a technical service studio focused on app interface integration and authorized API integration. Our team has hands-on experience in mobile applications and fintech, and can support one-stop delivery: protocol analysis, interface refactoring, OpenData/OpenFinance integration, and third-party interface integration. We also provide automated scripting and documentation so your team can maintain the integration without guesswork.
What do I need to provide?
How do you keep it compliant?
Can you deliver source code?
ODESSAPP is available only for collaborators who belong to companies affiliated with ODESSA. It is a personal finance and benefits management tool that helps users improve how they handle savings and economic resources provided as ODESSA program collaborators.
With ODESSAPP, collaborators can manage savings on demand (“Ahorro Vista”) and savings across different time horizons (“plazos”). If the user’s Caja de Ahorro has the service enabled, the app supports airtime top-ups to different numbers and providers and allows contracting and managing insurance under ODESSA’s offering.
When “Dispersión Inmediata” is enabled, collaborators can withdraw from “Ahorro Vista” to request “Préstamo Exprés” for instant availability. In 2025, ODESSA introduced ODESSA Cash: collaborators can generate a QR inside ODESSAPP and withdraw cash at OXXO stores across Mexico without a bank card.
Who is ODESSA? ODESSA provides a technology platform for managing the services of “Caja de Ahorro” and “Fondo de Ahorro”, among other benefits for collaborators.