Protocol analysis, debtor data export, and OpenFinance-style API delivery for com.pepivsky.debtorsapp — bridging personal lending records with accounting and credit systems.
Deudores y Cobranza (Debt and Collection Manager) is a Spanish-language tool used by individuals and micro-businesses across Latin America and Spain to track who owes them money, how much, and on what schedule. The app records highly structured financial information — debtor profiles, principal amounts, partial payments, and full transaction histories — exactly the data shape that accounting systems, ERPs, and credit-risk dashboards routinely need to ingest. Our studio delivers compliant API and data-export integrations that liberate this ledger from a single phone and turn it into a syncable, auditable feed.
Mirrors the on-device "debtors" entity: identifier, full name, optional phone/email, total principal, and currency. Useful for keeping a centralized list of borrowers in a back-office CRM, especially when a small lender or shopkeeper uses the app on multiple devices and needs a single source of truth.
Each debtor in the app holds one or more debts with an opening amount, due date, and notes. Our endpoint returns these records with original principal, balance remaining, status (open/closed), and timestamps — directly usable for monthly receivables roll-forwards.
Extracts every payment, partial repayment, and adjustment line tied to a debt. Use it for reconciliation against bank statements, double-entry bookkeeping, or risk modelling on repayment cadence.
Surface due dates and overdue-day counts so an external scheduler can dispatch SMS, WhatsApp, or email reminders — a common follow-on once a small lender outgrows on-device notifications alone.
Maps Deudores y Cobranza records to QuickBooks / Xero / Zoho Books invoice and payment objects. Comparable platforms in the receivables space — Debtor Daddy and Paidnice — already plug into Xero, MYOB and QuickBooks; we deliver the same shape of bridge for users of this app.
One-shot snapshot export of all debtors and transactions to CSV/XLSX/JSON for migrations, audits, or device-change recovery — analogous to the "Premium backup file" concept seen in apps like Debt Tracker, but exposed through a programmable API.
Deudores y Cobranza stores a compact but well-structured ledger. The table below maps each data type to its in-app source and a typical downstream use, so technology buyers can decide which feeds matter for their pipeline.
| Data type | Source (in-app screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Debtor profile | Debtor list / "New debtor" form | One record per debtor (name, contact, currency, total owed) | CRM sync, customer master data, anti-duplication checks |
| Loan / debt entry | Debtor detail screen | One record per loan (principal, due date, status, notes) | Receivables ledger, aging report input, KPI dashboards |
| Payment transaction | "Add payment" inside a debt | One row per payment event (amount, date, method, balance after) | Bank reconciliation, repayment-pattern analytics, audit trail |
| Outstanding balance | Debtor / debt summary | Computed per debtor and per debt | Real-time exposure, collection prioritization, credit limit checks |
| Due-date / overdue flag | Reminders & schedule view | Per debt, days-past-due metric | Automated reminders, dunning flows, late-fee triggers |
| Currency & locale | Settings / per-record currency | Per debt | Multi-currency rollup, FX-normalized reporting in LATAM contexts |
| Notes / free-text memos | Debt and transaction notes | Per record | Context for collectors, NLP-based classification, dispute history |
A neighborhood lender in Mexico or Argentina records dozens of informal loans per month inside Deudores y Cobranza. Our connector posts each new loan as an invoice in QuickBooks / Xero, and each in-app payment as a matched receipt — turning the phone ledger into double-entry accounting without re-keying. Mapped fields: debtor.name → Customer, debt.principal → Invoice.amount, transaction.amount → Payment.amount.
Latin-American small shops commonly sell fiado (on credit) to regulars. The app captures who owes for what; our integration aggregates daily outstanding balances across stores and pushes a consolidated receivables figure into the ERP nightly. This is a natural OpenData play: a structured feed standing in for missing POS-level credit reporting.
When private debts age past a threshold, our webhook pushes the debtor + transaction history into a debt-collection platform (e.g. Debitura, Debtist, InterProse ACE). The receiving system gets a clean OpenFinance-shaped JSON: principal, payment history, last contact note — enough to start a compliant collection workflow.
Users who already track expenses in Mobills or Money Tracker - Expense & Budget often want their "money lent out" reflected as a separate asset class. Our API exposes the Deudores y Cobranza balance as a callable endpoint, which a personal-finance dashboard can poll alongside bank-account data pulled through OpenFinance Brasil or Mexico's CNBV-driven open-finance pilots.
Repayment-cadence data (how often, how late, partial vs. full) is a strong behavioural signal. Lenders building internal scorecards can stream the transaction-history API into their feature store and compute on-time-payment ratios, paydown velocity, and recency of last payment — features comparable to what Bright Money and similar AI-driven debt apps use on bank-linked data.
POST /api/v1/debtors-app/session
Content-Type: application/json
{
"device_id": "android-7c8f...",
"user_consent_token": "<granted-by-end-user>",
"package_id": "com.pepivsky.debtorsapp"
}
200 OK
{
"session_token": "eyJhbGciOi...",
"expires_in": 3600,
"scopes": ["debtors.read","debts.read","transactions.read"]
}
Sessions are short-lived JWTs scoped to read-only endpoints by default. Write scopes (e.g. transactions.write) require an explicit consent flag captured during onboarding.
GET /api/v1/debtors?limit=50&cursor=...
Authorization: Bearer <SESSION_TOKEN>
200 OK
{
"data": [
{
"debtor_id": "dbt_001",
"name": "Juan P.",
"currency": "MXN",
"total_owed": 4350.00,
"open_debts": 2,
"last_payment_at": "2026-04-12T14:22:10Z"
}
],
"next_cursor": "eyJvZmZzZXQiOjUwfQ"
}
GET /api/v1/debts/{debt_id}/transactions
?from=2026-01-01&to=2026-04-30
Authorization: Bearer <SESSION_TOKEN>
200 OK
{
"debt_id": "dbt_001-loan-7",
"principal": 5000.00,
"balance_remaining": 1150.00,
"transactions": [
{"id":"tx_a1","type":"payment","amount":1500.00,
"currency":"MXN","occurred_at":"2026-02-04",
"balance_after":3500.00,"note":"abono parcial"}
]
}
// Error envelope
4xx { "error":"invalid_scope",
"message":"transactions.read not granted",
"request_id":"req_8af1" }
POST https://your-app.example.com/webhooks/debt-payment
X-Signature: sha256=...
Content-Type: application/json
{
"event":"payment.recorded",
"debtor_id":"dbt_001",
"debt_id":"dbt_001-loan-7",
"amount":350.00,
"currency":"MXN",
"occurred_at":"2026-04-29T11:02:33Z",
"balance_after":800.00
}
Signed with HMAC-SHA256; replay-protection via X-Timestamp. Retries follow exponential backoff for 24 hours.
Debtor information is personal data, often paired with phone numbers and amounts owed. We design every Deudores y Cobranza integration around the privacy regimes of the regions where the app is most used:
Practically: signed consent capture at onboarding, encrypted-at-rest storage, scoped access tokens, redaction of free-text notes on export, and a data-retention switch tied to debt closure are all built in.
A reference pipeline stays deliberately simple. Most clients adopt a four-stage flow:
Deudores y Cobranza is a Spanish-language Android-first app from developer "Pepivsky", squarely targeting individuals and micro-businesses in Latin America (Mexico, Colombia, Argentina, Peru) and Spain. Typical users are private lenders, neighborhood shopkeepers selling on fiado, freelancers tracking deferred-payment invoices, and family members lending money to friends. The Q4 2024 Sensor Tower data on Latin-American personal-finance apps shows steady growth in this category overall — Splitwise, Money Tracker, and Mobills all expanded weekly active users into the hundreds of thousands during 2024 — reinforcing that personal-debt tracking is a live and growing market segment that benefits from integration into wider OpenFinance pipelines.
Two developments make API integration with apps like Deudores y Cobranza increasingly relevant. First, Brazil's LGPD 2024 update introduced stricter incident-reporting and standard contractual clauses — pushing every fintech and adjacent app toward formalized data-flow contracts. Second, the broader debt-collection software market has shifted to API-first architectures in 2024–2025: platforms such as Debitura now expose debt-collection APIs across 183 markets, and embedded payment + open-banking flows have become standard expectations. A small personal-debt app that previously stood alone now sits in a connected ecosystem where structured exports unlock real value.
Click any thumbnail to view a larger version.
Users who choose Deudores y Cobranza often evaluate or use other personal-debt and receivables tools alongside it. Each of the apps below holds a complementary slice of debt-and-collection data; teams building unified financial pipelines frequently need bridges between several of them. We can deliver protocol analysis and integration work for the same data shapes across this group.
This page is not a comparative ranking. The list exists to acknowledge the broader integration landscape: anyone working with one of these apps can reach our team for the same kind of API delivery against Deudores y Cobranza data.
We are an independent technical studio specializing in App interface integration and authorized API integration. Our engineers come from fintech, payments, and protocol-analysis backgrounds, and our day-to-day work spans financial and banking apps, e-commerce and food-delivery, hotel and travel, and social and OTT platforms. For Deudores y Cobranza specifically, we bring direct experience extracting structured debt and transaction data from Android apps and reshaping it into compliant, OpenFinance-style feeds.
Tell us your target app and the requirements. We will reply with a scoped proposal, indicative timeline, and engagement model recommendation.
For Deudores y Cobranza projects, please mention the package ID com.pepivsky.debtorsapp and which data feeds matter most (debtors, transactions, webhooks, exports).
What do you need from me?
com.pepivsky.debtorsapp), a clear description of which data feeds you want, and any sandbox credentials or sample export files you already have.How long does delivery take?
How do you handle compliance?
Can I keep the source after the engagement?
Name: Deudores y Cobranza (Debt and Collection Manager)
Package: com.pepivsky.debtorsapp
Platform: Android (Google Play)
Primary regions: Latin America (Mexico, Colombia, Argentina, Peru) and Spain.
The app is a debt and collection manager that lets users keep strict control over their debtors, the amounts they owe, and a record of every transaction. Whether the user lends money to friends or sells products and services on deferred-payment terms, the app provides a clear interface to capture the principal, partial payments, and full settlement history.
Core features described by the developer include:
The app is positioned for individuals and micro-businesses who need a simple, structured ledger but do not want the complexity of full accounting software. That positioning is exactly what makes API integration valuable: the data is high-quality and structured, but trapped inside a single device until it is exposed through a programmable interface.