Supergood | DealerCenter DMS API

Supergood | DealerCenter DMS API

Programmatically access DealerCenter DMS inventory, CRM, desking, and BHPH data with a stable REST API. Supergood builds and operates production-grade, unofficial DealerCenter integrations so your team can automate dealership workflows without heavy custom engineering.

Plain English: DealerCenter is dealer management software used by independent and franchise car dealerships to manage inventory, acquire leads, desk deals, submit credit apps, and service BHPH accounts. An unofficial API lets you programmatically pull vehicles, photos, book values, leads/customers, deals and lender statuses, BHPH accounts and payments—and push new leads, quotes, credit apps, and payments back into DealerCenter.

For a tech company selling to car dealerships, this means you can sync real-time inventory and pricing to power storefronts, capture leads from your digital retail experiences, create/price deals with taxes and fees, submit credit applications to lenders, and mirror BHPH accounts to automate reminders and reconciliation. You can also push photos/documents, update statuses across systems (CRM, analytics, accounting), and keep multi-rooftop operations in lockstep.

What is DealerCenter?

DealerCenter (https://www.dealercenter.com/) is a cloud dealer management system (DMS) that centralizes sales, inventory, F&I, websites/digital retail, and buy-here-pay-here servicing for automotive retailers. Teams use DealerCenter to merchandise vehicles, capture and work leads, desk and contract deals, submit credit apps to lenders, manage documents and compliance, and collect BHPH payments.

Core product areas include:

  • Inventory & Merchandising (VIN decode, pricing, photos, reconditioning, syndication)
  • CRM & Lead Management (website leads, third-party marketplace leads, tasks, appointments)
  • Desking & F&I (quotes, taxes/fees, trade-ins, lender submissions, e-contracting)
  • Digital Retailing & Websites (online checkout, credit apps, pre-qualification)
  • BHPH & Collections (loan setup, payment schedules, receipts, delinquency workflows)
  • Documents & Compliance (forms, e-sign, OFAC/Red Flags, stips)
  • Vendor & Accounting Integrations (e.g., QuickBooks, book values, floorplan)

Common data entities:

  • Dealerships, Users, Roles, and Permissions
  • Vehicles (VIN, stock, photos, cost, price, book values, reconditioning)
  • Leads and Customers (contact data, consent, source, assignments)
  • Deals/Quotes (vehicle, buyer/co-buyer, trade-in, taxes/fees, payments)
  • Credit Applications and Lender Decisions (bureau pulls, status, stip requests)
  • BHPH Accounts (amortization schedules, payment history, late fees)
  • Payments & Receipts (method, amounts, posting, allocation)
  • Documents & Attachments (forms, IDs, stips, photos)

The DealerCenter Integration Challenge

Dealers live in DealerCenter, but turning portal-first workflows into reliable automation is hard:

  • Module-specific UX and entitlements across Inventory, CRM, F&I, and BHPH
  • Multi-rooftop complexity: lots, locations, pricing strategies, and photo pipelines
  • Lender flows and statuses vary by program; strict compliance and audit trails apply
  • Data spread across dashboards, exports, and document attachments not built for APIs
  • Authentication with MFA/SSO and session expiry complicates headless access

How Supergood Creates DealerCenter APIs

Supergood reverse-engineers authenticated browser flows and network interactions to deliver a resilient API endpoint layer for your DealerCenter tenant.

  • Handles username/password, SSO/OAuth, and MFA (SMS, email, TOTP) securely
  • Maintains session continuity with automated refresh and change detection
  • Normalizes responses so you can integrate once and rely on consistent objects across modules
  • Aligns with dealership entitlements and role-based permissions to ensure compliant access

Use Cases

Inventory Sync and Merchandising

  • Mirror vehicles (VIN, pricing, photos, book values) into your platform
  • Drive dynamic pricing strategies and market feeds
  • Publish photo/description updates across websites and marketplaces

Lead Capture and CRM Automation

  • Create leads from digital retail flows, FB lead ads, or website widgets
  • Assign reps, create tasks/appointments, and track outcomes
  • Maintain TCPA consent and attribution for downstream messaging

Desking, Credit Apps, and Lender Submissions

  • Build deals with taxes/fees, trade-ins, and rate/term options
  • Submit credit applications and fetch lender decisions/status
  • Attach stip documents and keep deal artifacts in sync

BHPH Servicing and Collections

  • Create and mirror BHPH accounts and schedules
  • Post payments, fees, and reversals with receipts n- Trigger reminders and reconcile daily cash/card/ACH activity

Available Endpoints

Authentication

POST /sessions: Establish a session using credentials. Supergood manages MFA (SMS, email, TOTP) and SSO/OAuth when enabled. Returns a short-lived auth token maintained by the platform.

curl --request POST \
  --url https://api.supergood.ai/integrations/<integration_id>/sessions \
  --header 'Authorization: Basic <Base64 encoded token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "username": "[email protected]",
    "password": "<password>",
    "mfa": { "type": "totp", "code": "123456" }
  }'

Example response

{
  "authToken": "eyJhbGciOi...",
  "expiresIn": 3600,
  "user": {
    "id": "u_3a92bc",
    "name": "General Manager",
    "entitlements": ["inventory", "crm", "deals", "bhph"]
  }
}

POST /sessions/refresh: Refresh an existing token to keep sessions uninterrupted.

Vehicles

GET /inventory/vehicles: List vehicles with filters and summary details.

Query parameters

  • lotId: string
  • status: in_stock | sold | wholesale | pending
  • source: trade_in | auction | dealer | other
  • updatedFrom, updatedTo: ISO 8601 timestamps
  • page, pageSize: integers for pagination

Example response

{
  "items": [
    {
      "vehicleId": "veh_9f21ad",
      "vin": "1HGCM82633A123456",
      "stockNumber": "DC-2451",
      "year": 2020,
      "make": "Toyota",
      "model": "Camry",
      "trim": "SE",
      "mileage": 38210,
      "color": {"exterior": "Blue", "interior": "Black"},
      "status": "in_stock",
      "lotId": "lot_1a2b3c",
      "price": 21995.00,
      "cost": 16850.00,
      "bookValues": {"kbb": 21400.00, "nada": 21875.00, "blackBook": 20950.00},
      "photos": [
        {"url": "https://cdn.supergood.ai/upl/a1.jpg", "position": 1},
        {"url": "https://cdn.supergood.ai/upl/a2.jpg", "position": 2}
      ],
      "acquiredAt": "2025-12-14",
      "updatedAt": "2026-01-22T14:31:02Z"
    }
  ],
  "page": 1,
  "pageSize": 50,
  "total": 1
}

Leads

POST /crm/leads: Create a new lead from your website or ad source with consent and vehicle interest.

curl --request POST \
  --url https://api.supergood.ai/integrations/<integration_id>/crm/leads \
  --header 'Authorization: Bearer <authToken>' \
  --header 'Content-Type: application/json' \
  --data '{
    "firstName": "Alex",
    "lastName": "Rivera",
    "email": "[email protected]",
    "phone": "+15551234567",
    "source": "website",
    "channel": "digital_retail",
    "vehicleInterestId": "veh_9f21ad",
    "message": "Interested in a test drive this weekend.",
    "tcpaConsent": {"granted": true, "timestamp": "2026-01-22T15:10:00Z", "ip": "203.0.113.42"},
    "assignedUserId": "u_7c11de",
    "referenceId": "lead-12345"
  }'

Example response

{
  "leadId": "ld_6b210e",
  "status": "new",
  "createdAt": "2026-01-22T15:10:21Z",
  "referenceId": "lead-12345"
}

Deals

POST /deals: Create a deal/quote with pricing, trade-in, and finance terms. Optionally submit a credit application.

curl --request POST \
  --url https://api.supergood.ai/integrations/<integration_id>/deals \
  --header 'Authorization: Bearer <authToken>' \
  --header 'Content-Type: application/json' \
  --data '{
    "vehicleId": "veh_9f21ad",
    "buyer": {
      "customerId": "cust_4e92ab",
      "firstName": "Alex",
      "lastName": "Rivera",
      "email": "[email protected]",
      "phone": "+15551234567",
      "address": {"line1": "500 Main St", "city": "Austin", "region": "TX", "postalCode": "78701"}
    },
    "dealType": "finance",
    "salePrice": 21995.00,
    "discounts": 500.00,
    "fees": [
      {"code": "doc", "description": "Doc Fee", "amount": 150.00},
      {"code": "ttl", "description": "Title/License", "amount": 220.00}
    ],
    "tax": {"rate": 0.0825, "amount": 1757.44},
    "tradeIn": {"enabled": true, "allowance": 3000.00, "lienPayoff": 1200.00, "vin": "2C3CDXBG9JH123456"},
    "downPayment": 2000.00,
    "finance": {"termMonths": 72, "apr": 7.49, "lenderId": "lnd_1029"},
    "submitCreditApplication": true,
    "attachments": [{"fileName": "paystub.pdf", "uploadToken": "upl_78ce10"}],
    "referenceId": "quote-7842"
  }'

Example response

{
  "dealId": "dl_5c88f0",
  "status": "submitted",
  "paymentEstimate": {"monthly": 354.28, "termMonths": 72, "apr": 7.49},
  "creditApplication": {"applicationId": "ca_9102a1", "status": "sent_to_lenders"},
  "createdAt": "2026-01-22T16:04:12Z",
  "referenceId": "quote-7842"
}

BHPH Payments

POST /bhph/accounts/{accountId}/payments: Post a payment to a BHPH account with allocation details and receipt metadata.

curl --request POST \
  --url https://api.supergood.ai/integrations/<integration_id>/bhph/accounts/acc_2d91e0/payments \
  --header 'Authorization: Bearer <authToken>' \
  --header 'Content-Type: application/json' \
  --data '{
    "amount": 275.00,
    "paymentMethod": "ach",
    "postedAt": "2026-01-22T17:30:00Z",
    "allocation": {"principal": 210.00, "interest": 55.00, "lateFees": 10.00},
    "note": "Customer paid via online portal",
    "referenceId": "pay-10992"
  }'

Example response

{
  "paymentId": "pmt_7a1b22",
  "status": "posted",
  "receiptNumber": "R-2026-001234",
  "nextDueDate": "2026-02-22",
  "referenceId": "pay-10992"
}

Get full API Specs →


Technical Specifications

  • Authentication: Username/password with MFA (SMS, email, TOTP) and SSO/OAuth where enabled; supports service accounts or customer-managed credentials
  • Response format: JSON with consistent resource schemas and pagination across modules
  • Rate limits: Tuned for dealership throughput while honoring entitlements and usage controls
  • Session management: Automatic reauth and cookie/session rotation with health checks
  • Data freshness: Near real-time retrieval of inventory, leads, deals, and BHPH objects
  • Security: Encrypted transport, scoped tokens, and audit logging; respects DealerCenter role-based permissions and compliance workflows
  • Webhooks: Optional async delivery for events (lead created, deal funded, payment posted)

Performance Characteristics

  • Latency: Sub-second responses for list/detail queries under normal load
  • Throughput: Designed for high-volume inventory sync and lead/deal operations
  • Reliability: Retry logic, backoff, and idempotency keys minimize duplicate actions
  • Adaptation: Continuous monitoring for UI/flow changes with rapid adapter updates

Getting Started

  1. Schedule Integration Assessment

Book a 30-minute session to confirm your modules, licensing, and authentication model.

  1. Supergood Builds and Validates Your API

We deliver a hardened DealerCenter adapter tailored to your workflows and entitlements.

  1. Deploy with Monitoring

Go live with continuous monitoring and automatic adjustments as DealerCenter evolves.

Schedule Integration Call →


Frequently Asked Questions

Q: Which DealerCenter modules can this integration cover?

Supergood supports workflows across Inventory, CRM/Leads, Desking/F&I (deals and credit apps), and BHPH servicing, subject to your licensing and entitlements. We scope coverage during integration assessment.

Q: Can you create deals and submit credit applications to lenders from our product?

Yes. We can build quotes with taxes/fees/trade-ins, attach supporting documents, and submit credit apps through DealerCenter’s lender flows where permitted. We keep lender decisions and stip requests synced to your system.

Q: How are MFA and SSO handled for automation?

We support username/password + MFA (SMS, email, TOTP) and can operate behind SSO/OAuth when enabled. Sessions are refreshed automatically with secure challenge handling.

Q: Do you support photo and document uploads?

Yes. We support uploading vehicle photos and deal documents via signed uploads, with checksum validation and time-limited URLs.


RouteOne API - Programmatically submit and track auto credit applications with Supergood

Dealertrack API - Sync vehicle, deal, and F&I data across your retail stack


Ready to automate your DealerCenter workflows?

Supergood can have your DealerCenter integration live in days with no ongoing engineering maintenance.

Get Started →

Read more