Freedom Debt Relief API integration & client data export

Authorized OpenFinance-style endpoints for settlement offers, dedicated account balances, deposit schedules and enrolled debt portfolios.

From $300 · Pay-per-call available
OpenData · OpenFinance · Debt-relief integration · Protocol analysis

Bring Freedom Debt Relief settlement progress into the rest of your financial stack

The Freedom Debt Relief mobile dashboard concentrates several high-value data feeds into one screen: live settlement offers, dedicated account balances, the upcoming deposit schedule, and the status of every enrolled debt under negotiation. We build authorized, OpenFinance-style endpoints that surface those same feeds behind a stable JSON contract so financial wellness apps, credit counseling CRMs and bookkeeper tools can read them without scraping the UI.

Settlement offer feed — Stream new and pending settlement offers (creditor, original balance, settled amount, savings %, expiry) so an advisor app can prompt the client to authorize within minutes, not days.
Dedicated account & deposit sync — Pull current escrow balance and the next 6 scheduled deposits to power cash-flow forecasting alongside the client's checking account.
Enrolled debt portfolio — Read the full list of enrolled accounts with creditor, original balance, status (negotiating, settled, paying) and savings to date, ready for portfolio analytics.
Settlement event webhooks — Receive a signed event when a settlement is offered, authorized, paid or rejected so your CRM record updates in real time.

Feature modules

Authorized client login

Mirror the mobile app's authorization flow with a server-to-server OAuth wrapper. Tokens are bound to the consenting client, refreshed automatically, and revocable from a single admin endpoint. Useful when a financial wellness app needs to display a member's debt-relief progress without storing the FDR password.

Settlement offer streaming

The mobile app sends a push notification the moment a settlement offer is available. Our integration converts that signal into a webhook payload containing the creditor, balance, settlement percentage and authorization deadline, so an advisor or CRM can react before the offer expires.

Dedicated account balance API

Returns the current dedicated escrow balance, the date and amount of the most recent deposit, and the next scheduled deposit. Ideal input for budgeting widgets, payroll-aligned cash-flow planners and overdraft warnings.

Enrolled debt list

Surfaces every enrolled account with creditor name, original balance, current negotiated balance, status flag and projected settlement window. Powers portfolio dashboards, risk scoring and educational coaching tools.

Savings tracker endpoint

The "See Your Savings" view compares actual savings against a baseline of minimum payments. We expose that calculation as JSON so comparison engines and ROI calculators can render an apples-to-apples figure on the consumer's preferred dashboard.

Statement export

Generates monthly or YTD statements as CSV, JSON or PDF, including each settled account, the settlement amount, the FDR fee, and any forgiven-debt totals relevant for 1099-C tax reporting.

Data available for integration

The table below maps the Freedom Debt Relief client dashboard fields to the API surface we typically expose. Granularity reflects what the underlying mobile app already presents to the user; the integration does not invent new data points.

Data typeSource screenGranularityTypical use
Settlement offersPush notifications & "Active settlements" tabPer offer (creditor, balance, savings %, expiry)Real-time advisor alerts, CRM tasks
Dedicated account balanceAccount overview tileDaily snapshot, USDBudgeting, cash-flow forecasting
Deposit schedule"Upcoming deposits" widgetPer deposit (date, amount, status)Reconciliation, payroll alignment
Enrolled debt list"My debts" screenPer account (creditor, balance, status)Portfolio analytics, coaching
Settlement progress events"Debts under negotiation"Per-event logCompliance audit, savings audit
Savings vs. baseline"See your savings" panelAggregated USD totals, YTD and lifetimeComparison engines, ROI dashboards
Client profile & consentAccount & settingsPer sessionKYC re-use, consent ledger

Typical integration scenarios

1. Financial wellness aggregation

A consumer fintech wants to show debt-relief progress alongside budgeting and credit data. The integration calls our enrolled-debt and savings endpoints under the user's authorized OAuth token, then renders a tile inside the wellness dashboard. Maps cleanly to the OpenFinance pattern of consent-driven third-party data access.

2. Credit counseling CRM sync

Non-profit credit counseling agencies that refer clients into a settlement program want a single case file. We deliver webhooks into Salesforce or HubSpot on each settlement authorization, including creditor, settled amount and savings; the agency advisor sees the update without logging into FDR's portal.

3. Bookkeeper and tax-prep export

Settled debt over $600 may trigger a 1099-C cancellation-of-debt notice. The statement export endpoint produces a YTD CSV listing each settled account, settlement amount, FDR fee and forgiven balance, ready to drop into QuickBooks Online or a tax preparer's working file.

4. Compliance & audit archive

Regulated debt servicers must retain proof of consent and authorization. We subscribe to settlement-authorization webhooks, sign each event with HMAC, and archive them in S3 (or any S3-compatible object store) with retention policies aligned to the FTC Telemarketing Sales Rule record-keeping window.

5. Personal dashboard in Notion or Sheets

Individual users sometimes just want to combine their FDR balance with bank balances inside a Google Sheets or Notion dashboard. We provide a thin REST proxy with API-key auth and a sample Apps Script function that pulls the current dedicated account balance once an hour.

Technical implementation

The examples below are pseudo-code drawn from a real engagement template. Endpoint paths, header names and field names are illustrative; the production integration is shaped to your destination system and your authorization model.

Authorize a client session

POST /api/v1/fdr/auth/login
Content-Type: application/json

{
  "client_id": "fdr_client_8a91...",
  "auth_payload": "<authorized session bundle>",
  "scope": ["settlements.read", "deposits.read", "debts.read"]
}

200 OK
{
  "access_token": "eyJhbGciOi...",
  "expires_in": 3600,
  "refresh_token": "rt_3c8...",
  "consent_id": "cnst_2026_05_03_8a91"
}

Pull settlement progress for a date range

GET /api/v1/fdr/settlements?from=2026-01-01&to=2026-04-30
Authorization: Bearer eyJhbGciOi...

200 OK
{
  "client_id": "fdr_client_8a91...",
  "settlements": [
    {
      "creditor": "Capital One",
      "original_balance": 4820.55,
      "settled_balance": 1928.22,
      "savings_pct": 60.0,
      "status": "paid",
      "authorized_at": "2026-03-14T18:22:11Z"
    }
  ],
  "page": {"next": null}
}

Settlement-offer webhook payload

POST https://your-app.example.com/hooks/fdr
X-FDR-Signature: t=1746301200,v1=4f1c9...

{
  "event": "settlement.offer.created",
  "occurred_at": "2026-05-03T15:00:00Z",
  "client_id": "fdr_client_8a91...",
  "creditor": "Discover",
  "original_balance": 7320.10,
  "offered_settlement": 2562.04,
  "savings_pct": 65.0,
  "expires_at": "2026-05-10T23:59:00Z"
}

Compliance & privacy

Regulatory framing

Freedom Debt Relief operates as a debt settlement provider in the United States. The integration is designed to sit inside the boundaries set by the Gramm-Leach-Bliley Act (Regulation P), the FTC Telemarketing Sales Rule's debt-relief provisions, and CFPB guidance on consumer financial data access. Where state privacy laws (CCPA/CPRA, Virginia CDPA, Colorado CPA, etc.) impose stricter requirements on downstream processors, the deliverable includes the matching consent and deletion endpoints.

Operating principles

  • No unauthorized scraping; access is gated on a stored consent record.
  • Data minimization at the response layer — only fields the integration explicitly asked for.
  • Encrypted at rest, transport via TLS 1.2+, signed webhooks with rotating secrets.
  • Audit log for every authorization event; retention aligned with the FTC record-keeping window.
  • NDA available before sandbox access is shared.

Data flow / architecture

The reference pipeline is intentionally short: Freedom Debt Relief mobile APIauthorization & consent layer (OAuth tokens, consent ledger) → integration backend (normalization, schema validation, signing) → delivery channel (your REST API, webhook endpoint, S3 archive or data warehouse loader). Each hop is logged with a correlation ID so a settlement-offer event can be traced from the moment it appeared in the client's app to the moment it landed in the destination CRM.

Market positioning & user profile

Freedom Debt Relief is a U.S.-only consumer service for adults carrying roughly $7,500 or more in unsecured debt — typically credit cards, medical bills and personal loans. Clients skew toward households between 30 and 60 years old, often after a major financial shock. The mobile dashboard launched in its current single-tap-authorization form during 2024 and is available on both iOS (App Store ID 6576817794) and Android (package com.fdrmobiledashboard). Integrations therefore target U.S. fintechs, credit counseling agencies and tax/bookkeeping platforms that serve the same demographic.

Screenshots

Click any thumbnail to enlarge. These are the public Google Play screenshots of the Freedom Debt Relief Client Dashboard and illustrate the data surfaces our integration targets.

Freedom Debt Relief screenshot 1 Freedom Debt Relief screenshot 2 Freedom Debt Relief screenshot 3 Freedom Debt Relief screenshot 4 Freedom Debt Relief screenshot 5 Freedom Debt Relief screenshot 6 Freedom Debt Relief screenshot 7 Freedom Debt Relief screenshot 8 Freedom Debt Relief screenshot 9 Freedom Debt Relief screenshot 10

Similar apps & the wider integration landscape

Freedom Debt Relief is one of several U.S. apps whose dashboards expose structured debt, deposit and settlement data. Teams building OpenData pipelines often need a unified view across more than one of these — listed below in alphabetical order, with a short note on the data shape each one tends to expose.

  • Achieve — Personal loans, debt resolution and home equity in one mobile app; integration appetite focuses on consolidated loan and debt-resolution status.
  • Bills.com — A long-running debt and credit education brand with a member dashboard; commonly paired with debt-relief data for content personalization.
  • Clear One Advantage — One of the largest debt settlement firms; client portal exposes deposits and active negotiations very similar in shape to FDR.
  • Clerkie — AI-driven debt management; partners often need to merge Clerkie's payoff plans with settlement data from elsewhere.
  • JG Wentworth — Structured-settlement and debt-relief programs; useful when a client moves between debt resolution and lump-sum funding.
  • Liberty Debt Relief — Client portal centred on enrollment status and creditor list; integration overlap with FDR's "My debts" screen.
  • National Debt Relief — Direct competitor with a similar mobile dashboard; teams that intermediate between providers often need both data feeds normalized into one schema.
  • New Era Debt Solutions — Veteran settlement provider; smaller portal but exposes enrolled-debt and settlement-history fields worth syncing.
  • Pacific Debt Relief — Performance-fee model; integration usually focuses on settled-amount and fee data for accurate ROI reporting.
  • Relief — Mobile-first debt management app aimed at younger consumers; data shape skews toward payoff plans and creditor communication logs.

Listing these alongside Freedom Debt Relief is intentional: many of our clients integrate two or three of them in the same pipeline to give an end user a single, unified picture of their debt-relief journey.

About OpenFinance Lab

Who we are

OpenFinance Lab is an independent studio focused on protocol analysis and OpenData / OpenFinance API integration for mobile financial apps. Our engineers come from banks, payment gateways and consumer fintech, and we ship end-to-end integrations under privacy and consent constraints.

  • Debt relief, lending, payments, insurtech and personal financial management
  • Custom Python, Node.js and Go SDKs with test harnesses
  • Compliance-aware delivery: GLBA, CCPA/CPRA, CFPB guidance, FTC TSR
  • Source code delivery from $300 — runnable API source plus full documentation; pay after delivery upon satisfaction.
  • Pay-per-call API billing — access our hosted endpoint, pay only per call, no upfront cost; ideal for usage-based teams.

Deliverables checklist

  • OpenAPI / Swagger specification for every exposed endpoint
  • Protocol and authorization flow report (token chain, refresh cadence)
  • Runnable source for login, statement export and webhook receiver
  • Automated test suite plus Postman collection
  • Compliance guidance: consent template, retention policy, deletion endpoint
  • Operations runbook for token rotation and incident response

Engagement workflow

  1. Scope confirmation — which feeds (settlements, balance, deposits, debts), which destination, which retention rules.
  2. Protocol analysis and API design (2–5 business days).
  3. Build and internal validation against an authorized sandbox account (3–8 business days).
  4. Documentation, sample code, Postman collection and test cases (1–2 business days).
  5. Hand-off, optional pay-per-call hosting, and a 30-day support window for token-refresh edge cases.

Contact

Send us the target app (already provided here as Freedom Debt Relief), the data fields you need and any sandbox or authorized client credentials. We respond with a fixed quote and a delivery timeline.

Open the contact page

FAQ

What do I need to provide before you start the Freedom Debt Relief integration?

Provide an authorized client account or sandbox credentials, the data fields you need (settlement offers, dedicated account balance, deposit schedule, enrolled debts), the destination system (CRM, data warehouse, financial wellness app) and the consent record format your compliance team requires.

How long does the first delivery take?

Most Freedom Debt Relief integrations ship a working login plus statement export endpoint in 5 to 12 business days. Real-time webhook delivery for settlement authorizations and audit-trail signing add another 3 to 5 days, depending on archive and retention requirements.

How is the integration kept compliant with GLBA and CFPB rules?

All access uses authorized client credentials with documented consent. The implementation logs every authorization event, applies data-minimization at the response layer, encrypts data at rest, and aligns retention with the FTC Telemarketing Sales Rule record-keeping window. We do not scrape data without consent.

Can I get pay-per-call pricing instead of a one-time source code drop?

Yes. We offer a hosted endpoint with usage-based billing for teams that prefer not to operate the integration themselves. Source code delivery starts at 300 USD; the hosted option has no upfront cost.
📱 Original app overview (appendix)

The Freedom Debt Relief Client Dashboard, published by FreedomDebtRelief LLC under the package com.fdrmobiledashboard, lets enrolled clients manage an existing debt relief plan from their phone. Push notifications announce new settlement offers and let the client review and authorize an offer with a single tap, without leaving the app.

Inside the dashboard, clients see upcoming deposits into the dedicated account, the current balance of that account, the full list of enrolled debts, and the status of each settlement under negotiation. A "See your savings" view compares actual savings against alternative solutions, and a deep link opens the full online dashboard for additional resources and support.

According to public statistics from Freedom Debt Relief, the company has resolved over $19 billion in debt for more than 1 million people since 2002 (figures as of August 2024), employs 250 debt experts who negotiate with over 3,500 creditors, and serves 200,000+ current clients. The full website is at freedomdebtrelief.com and the company's published support number is (800) 910-0065.

  • Push notifications for new settlement offers with single-tap authorization
  • Detailed views of upcoming deposits, dedicated account balance and enrolled debts
  • Live status for active settlements and debts under negotiation
  • Savings tracker comparing FDR results to alternative solutions
  • Deep link to the online dashboard for resources and support

This page describes a third-party integration positioning. Freedom Debt Relief and the Freedom Debt Relief Client Dashboard are products of FreedomDebtRelief LLC; OpenFinance Lab is not affiliated with FreedomDebtRelief LLC.

Last updated: 2026-05-03