United Auto Credit (UACC) API integration services

OpenFinance-grade protocol analysis and production APIs for non-prime auto-loan servicing data: balance, payment history, AutoPay, and statement export.

From $300 · Pay-per-call available
OpenData · OpenFinance · Auto-loan servicing · Protocol analysis

Connect United Auto Credit account data to your finance, accounting, or risk stack

United Auto Credit (UACC) is a US non-prime auto lender founded in 1996, headquartered in Fort Worth, TX, that services indirect auto loans through more than 50 states of dealer networks. Its mobile app — published by net.unitedautocredit.uacconnect — exposes structured loan-account data that is highly valuable to dealers, accounting platforms, fintech aggregators, and consumer financial dashboards.

Loan-account data — Outstanding principal, current balance, next-due date and amount, past-due indicators, escrow and fees breakdown.
Payment history & AutoPay — Posted, pending, and scheduled payments; AutoPay enrollment state and bi-weekly/monthly cadence.
Statements & notifications — Monthly billing statements (sent ~14 days before the due date), paperless preferences, and account event alerts.

Why UACC account data matters

Indirect auto-finance footprint

UACC focuses on customers who fall outside prime credit grades. For dealer groups, BHPH operators, F&I platforms, and credit-rebuilding fintechs, programmatic access to a borrower's UACC loan state is a prerequisite for dealer-side reporting, refinance offers, and customer-relationship workflows that span multiple lenders.

Real-time servicing signals

The redesigned app surfaces real-time updates on balance and payment posting. Wired into your stack, those same signals power early-warning collections, refi triggers when LTV improves, and consolidated household-finance dashboards alongside checking-account data.

Section 1033 readiness

The CFPB finalized its Section 1033 Personal Financial Data Rights rule in October 2024, with phased compliance beginning April 2026. Auto-loan data falls within the FDX v6.4 loan-account schema. Customers who authorize a third-party recipient have a right to standardized access to their UACC servicing data — and that is exactly the integration we build.

Feature modules

Account login & session bridge

Mirror the UACC app's mobile authorization (username / password, optional biometric / face-recognition unlock added in 2025) into a server-side session that your backend can refresh. We deliver a token-refresh worker that survives 401/403 rotations without forcing users to re-authenticate.

Balance & payoff inquiry

Endpoint that returns current balance, principal, accrued interest to-date, and a payoff figure good through a caller-supplied date. Used by refinance brokers and trade-in tools that need a deterministic payoff quote at the moment of dealer worksheet generation.

Payment history API

Returns posted and pending entries with amount, channel (ACH, debit card, money order), and applied splits across principal, interest, and fees. Supports paging, ISO-8601 date ranges, and an optional reconciled flag for accounting tools such as QuickBooks Online.

AutoPay management

Reads the current AutoPay enrollment state (bi-weekly or monthly), the funding bank account on file (last four digits only), and the next scheduled draft. Write endpoints support enrolling, modifying, and cancelling AutoPay where the borrower's authorization permits.

Statement export

Pulls the monthly billing statement (issued roughly 14 days before the due date) as a structured JSON envelope plus a binary PDF. Optional Excel rendering for back-office reconciliation; webhook variant for new-statement notifications.

Account notifications webhook

Subscribes to the same event stream the mobile app uses for in-app notifications: payment posted, payment failed, statement ready, AutoPay change, due-date reminder. Delivered to your endpoint as signed JSON for downstream alerts and CRM updates.

Data available for integration

The matrix below catalogs the structured data we extract from the UACC mobile and web channels. Each row identifies the source surface (which app screen the data is rendered on), update granularity, and a typical downstream use.

Data typeSource surfaceGranularityTypical use
Account profile Login & account details screen On change KYC refresh, contact-info sync into dealer CRM
Loan terms Account details Static (per origination) Amortization modeling, refinance qualification
Current balance & payoff Home / dashboard Real-time, reads on demand Trade-in payoff, lien release tracking, household net-worth dashboards
Payment history Payment history list Per posted/pending entry Accounting export, on-time-payment credit-report attestation
AutoPay status AutoPay management On enroll/modify Dunning prevention, churn signal, banking-app reminders
Monthly statement Statements / paperless billing Monthly (≈ T-14 days from due) Tax filing, fleet expense capture, FDX statement schema mapping
Notifications Push / in-app notification center Event-driven Collections triage, CRM activity feed, customer success outreach

Typical integration scenarios

1. Dealer F&I refinance trigger

Used by indirect dealer groups that sold the original UACC loan. Inputs: customer consent token, VIN, and account ID. The job polls balance, payment-on-time count, and current LTV against a vehicle-value feed. When the borrower crosses an internal threshold (e.g. 12 on-time payments and improved equity), it raises a refinance lead in the dealer CRM. Maps to FDX loan-account + payments resources.

2. Personal-finance app aggregation

An end-user PFM (similar in spirit to FDX-driven banking aggregators) lets the consumer link their UACC account alongside checking and credit card data. Our connector returns balance, next-due, AutoPay state, and 24 months of history into the PFM's normalized loan model so monthly cash-flow planning includes the auto loan.

3. Accounting & bookkeeping sync

For sole proprietors who use a financed vehicle for business, our integration pushes each statement into QuickBooks Online or Xero, splitting principal vs. interest into separate ledger lines. Statement JSON is mapped to standard COA codes; the binary PDF is attached to the journal entry for audit.

4. Collections early-warning

Used by third-party collections-prevention vendors that work with UACC borrowers. Webhook-driven: a payment-failed event opens a soft outreach (SMS / email) within minutes, while a borrower self-service reschedule API attempts to restage the missed payment. Reduces 30-day-past-due conversion.

5. Credit-builder reporting

Fintechs that report on-time payments for credit-rebuilding products read 12 to 36 months of UACC payment history with applied-amount detail and translate it into Metro 2 trade-line attestations. Useful where the borrower wants supplemental reporting beyond the lender's primary furnishment.

Technical implementation

Below are three representative request/response shapes from the production source bundle. They illustrate the OAuth-style session bridge, the balance-and-payoff endpoint, and the payment-history pagination contract. Field names are normalized to FDX-leaning conventions so downstream systems can map without bespoke glue.

Auth: session bridge

POST /api/v1/uacc/session
Content-Type: application/json

{
  "username": "<UACC_USER>",
  "password": "<UACC_PASSWORD>",
  "device_hint": "ios-2.0.30",
  "consent_id": "c_98f1..."
}

200 OK
{
  "access_token": "eyJhbGciOi...",
  "refresh_token": "rft_a91...",
  "token_type": "Bearer",
  "expires_in": 1800,
  "account_ids": ["uacc_8821042"]
}

Balance & payoff inquiry

GET /api/v1/uacc/accounts/uacc_8821042/balance
Authorization: Bearer <ACCESS_TOKEN>

200 OK
{
  "account_id": "uacc_8821042",
  "as_of": "2026-04-28T14:02:11Z",
  "current_balance": 12480.55,
  "principal_balance": 12118.40,
  "next_due_date": "2026-05-12",
  "next_due_amount": 412.18,
  "past_due_amount": 0.00,
  "payoff": {
    "good_through": "2026-05-05",
    "amount": 12552.10
  },
  "autopay": {
    "enrolled": true,
    "frequency": "MONTHLY",
    "funding_account_last4": "4421"
  }
}

Payment history with paging

GET /api/v1/uacc/accounts/uacc_8821042/payments
  ?from=2025-04-01&to=2026-04-28&cursor=eyJpZCI6IjQ5In0
Authorization: Bearer <ACCESS_TOKEN>

200 OK
{
  "items": [
    {
      "payment_id": "pmt_55102",
      "posted_at": "2026-04-12",
      "amount": 412.18,
      "channel": "ACH",
      "status": "POSTED",
      "applied": {
        "principal": 318.04,
        "interest": 87.55,
        "fees": 6.59
      }
    }
  ],
  "next_cursor": "eyJpZCI6IjQ4In0",
  "has_more": true
}

# Errors are surfaced as RFC 7807 problem+json
# 401 unauthorized, 409 autopay_conflict, 423 account_locked

Compliance & privacy

UACC handles consumer credit data in the United States, so every integration we ship is built around US financial-services rules. The most relevant frameworks are:

  • CFPB Section 1033 (Personal Financial Data Rights, finalized October 2024) — establishes a consumer right to authorize third-party access to financial data; auto loans are in scope. Implementation began April 2026 on a phased schedule.
  • Financial Data Exchange (FDX) v6.4 (June 2025) — the CFPB-recognized standard-setting body whose loan-account, payments, and statements resources are the target schema for our normalized output.
  • Gramm-Leach-Bliley Act (GLBA) Safeguards Rule — informs encryption-at-rest, access logging, and incident-response posture for any system that processes UACC borrower data.
  • State privacy laws (CCPA/CPRA, etc.) — UACC has California roots; we honor consumer deletion and opt-out signals in our intake pipeline.

We operate under explicit borrower authorization, capture a consent record per session, and minimize stored fields to what each scenario requires. NDAs and DPAs are available on request.

Data flow / architecture

A typical deployment is a four-stage pipeline. Each stage is independently deployable so you can swap your own storage or analytics layer without rewriting the connector.

UACC mobile / web channel Connector (auth + extraction) Normalization (FDX schema) Your API / warehouse
  • Connector — handles login, token refresh, retry with jittered backoff, and error classification.
  • Normalization — maps UACC fields to FDX-aligned objects and emits Avro/JSON to your queue.
  • Storage / API — your existing warehouse, Postgres, or a hosted REST surface we manage on your behalf for pay-per-call billing.

Market positioning & user profile

United Auto Credit primarily serves US borrowers in non-prime credit tiers, originated indirectly through a national network of franchise and independent dealers. Typical end users are individuals in the 580–680 FICO range who finance used vehicles in the $8,000–$25,000 range. The mobile app (Android net.unitedautocredit.uacconnect and the iOS counterpart) is the primary self-service surface, with the redesigned 2.0.x line shipping iterative releases throughout 2025 (2.0.17 in April, 2.0.19 in June, 2.0.24 in August, 2.0.30 in October). Our integration buyers are dealer groups, F&I tools, PFM apps, accounting platforms, and credit-builder fintechs that need a normalized view of UACC servicing data alongside other auto-lender feeds.

Screenshots

Click any thumbnail to view the full-resolution screen. These are sourced from the official Google Play listing.

UACC app screenshot 1 UACC app screenshot 2 UACC app screenshot 3 UACC app screenshot 4 UACC app screenshot 5 UACC app screenshot 6 UACC app screenshot 7 UACC app screenshot 8 UACC app screenshot 9 UACC app screenshot 10

Similar apps & integration landscape

Buyers integrating UACC commonly need parallel connectors for other US non-prime auto lenders. Treat the list below as the surrounding ecosystem — most production deployments cover three to five lenders so dealer groups and PFM apps see a unified view of a borrower's auto-finance footprint.

Westlake Financial

One of the largest US non-prime auto lenders, with its MyAccount portal exposing balance, payment history, and AutoPay. Often paired with UACC for dealer groups that fund through both rails.

Credit Acceptance

Subprime-focused indirect lender with a self-service account portal. Users who manage UACC and Credit Acceptance accounts often want a unified payment-history export across both.

Exeter Finance

Operates the MyAccount portal at myaccount.exeterfinance.com with stored payment methods and immediate posting. Common companion connector for non-prime dealer groups.

Santander Consumer USA

Offers MyAccount with Apple Pay, Google Pay, PayPal, and Venmo as payment channels. PFM aggregators that integrate UACC frequently add Santander Consumer for cross-portfolio coverage.

Regional Acceptance Corporation

Greenville, NC-based servicer focused on sub-prime and near-prime borrowers. Holds similar loan-account data: balance, payment history, and AutoPay state.

Avid Acceptance

Provides auto financing for borrowers in or near bankruptcy. Connects naturally to UACC integrations for credit-rebuilding fintechs that report on-time payments.

RoadLoans (Santander)

Direct-to-consumer auto-financing brand with an iPhone application history dating back to its 2010s launch. Useful in mixed-rail dealer apps that want both indirect (UACC) and direct (RoadLoans) lender visibility.

LendBuzz

AI-driven non-prime auto lender, particularly for thin-file borrowers. Frequently included in PFM aggregators as a complement to traditional non-prime lenders such as UACC.

TitleMax

Title-loan provider whose accounts often co-exist on the borrower's balance sheet with a UACC indirect auto loan. Combined visibility is useful for credit-counseling and debt-management workflows.

Carvana (Bridgecrest)

Carvana's loan servicer Bridgecrest exposes a consumer self-service portal for vehicle loans. Common companion data source for borrowers who refinanced from a UACC indirect loan into a Carvana-originated vehicle.

What we deliver

Deliverables checklist

  • OpenAPI 3.1 specification for every endpoint, normalized toward FDX v6.4
  • Protocol & auth flow report (login, refresh, biometric unlock variant, error matrix)
  • Runnable source for login, balance, payment-history, AutoPay, and statement endpoints (Python or Node.js)
  • Webhook receiver template for account events
  • Automated test suite with recorded fixtures for offline replay
  • Compliance guidance: Section 1033 readiness checklist, GLBA-aligned logging, consent-record schema

Engagement models

  • Source-code delivery from $300 — receive runnable API source code and full documentation; pay after delivery upon satisfaction.
  • Pay-per-call API billing — call our hosted endpoints and pay only per request, with no upfront commitment.
  • Hybrid arrangements available for teams that want to start hosted and graduate to self-hosted source code.

About us

We are an independent technical studio focused on app protocol analysis and authorized API integration. Our team blends mobile-platform reverse engineers, fintech backend engineers, and a former dealer-side F&I product manager. We have shipped connectors across US non-prime auto lenders, BNPL providers, and consumer banks, and we know how the FDX, CFPB 1033, and GLBA pieces fit together for production deployments.

  • Auto finance, consumer banking, BNPL, and cross-border payments coverage
  • Enterprise API gateway hardening and security reviews
  • Custom Python / Node.js / Go SDKs and replayable test harnesses
  • Full pipeline: protocol analysis → build → validation → compliance hand-off

Contact

Send us the target app (United Auto Credit, in this case), the data scopes you need, and any sandbox or test-account access you can share. We will respond with a scope, a timeline, and a fixed fee.

Contact page

Engagement workflow

  1. Scope confirmation — endpoints, data fields, and consent posture (1 business day).
  2. Protocol analysis and OpenAPI design (2–5 business days).
  3. Build, normalize, and internal validation against fixtures (3–8 business days).
  4. Documentation, sample clients, and replayable test pack (1–2 business days).
  5. Hand-off and compliance review; total first delivery typically lands inside 5–15 business days.

FAQ

What do you need from me?

The target app (UACC), the specific data you need (balance, payments, AutoPay, statements), and ideally a test account or borrower-authorized credentials so we can validate against live data.

How long does delivery take?

Typical first drop is 5–12 business days for a normalized read-only API; write paths such as AutoPay enroll/cancel add a few days for safe-harbor testing.

How do you handle compliance?

Authorized access only, GLBA-aligned logging, FDX-shaped output, Section 1033 consent records, and configurable data-minimization rules. NDAs and DPAs on request.

Can you also cover other auto lenders?

Yes — Westlake Financial, Credit Acceptance, Exeter Finance, Santander Consumer USA, Bridgecrest/Carvana, and others are supported as parallel connectors under the same FDX-aligned schema.
📱 Original app overview (appendix)

The official United Auto Credit description, summarized: the new United Auto Credit mobile app was redesigned from the ground up to make managing a UACC account easier. Active UACC customers can:

  • View account details and manage payments — current balance, payment history, and important account notifications.
  • Make fast and easy payments — pay anytime, anywhere; manage AutoPay settings to stay on track.
  • Track progress and stay on target — real-time updates on the account, so the borrower is always in the know.

United Auto Credit Corporation (UACC), Android package net.unitedautocredit.uacconnect, iOS App Store ID 1032544657, is a US non-prime auto-finance company founded in 1996 and now headquartered in Fort Worth, TX. The 2.0.x mobile app line shipped throughout 2025 (versions 2.0.17 in April, 2.0.19 in June, 2.0.24 in August, and 2.0.30 in October) with iterative UI/UX improvements and biometric/face-recognition login. This page is an independent technical positioning piece for OpenData/OpenFinance integration; it is not affiliated with or endorsed by United Auto Credit Corporation.