OpenFinance-grade protocol analysis and production APIs for non-prime auto-loan servicing data: balance, payment history, AutoPay, and statement export.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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 type | Source surface | Granularity | Typical 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 |
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.
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.
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.
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.
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.
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.
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"]
}
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"
}
}
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
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:
loan-account, payments, and statements resources are the target schema for our normalized output.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.
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.
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.
Click any thumbnail to view the full-resolution screen. These are sourced from the official Google Play listing.
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.
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.
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.
Operates the MyAccount portal at myaccount.exeterfinance.com with stored payment methods and immediate posting. Common companion connector for non-prime dealer groups.
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.
Greenville, NC-based servicer focused on sub-prime and near-prime borrowers. Holds similar loan-account data: balance, payment history, and AutoPay state.
Provides auto financing for borrowers in or near bankruptcy. Connects naturally to UACC integrations for credit-rebuilding fintechs that report on-time payments.
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.
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.
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'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.
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.
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.
What do you need from me?
How long does delivery take?
How do you handle compliance?
Can you also cover other auto lenders?
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:
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.