Skip to main content
Every record returned by the Home Service Data API carries a quote_safe boolean. This single field is the platform’s data-quality contract between verified source data and your customer-facing quoting workflow. When quote_safe is true, the record has passed a documented review process that confirms the source, effective dates, and lender or program status. When it is false, the record is context-quality information suitable for display and analysis but not for driving a payment calculation or a customer commitment.

What quote_safe Means

A record is marked quote_safe: true only after it clears all of the following gates:
  • Source review — the record’s origin document has been reviewed and confirmed as a primary or authoritative source (e.g., a lender rate sheet, a published program document, a distributor price list)
  • Effective date validation — the record’s effective_date and expires_at fields have been checked to confirm the record is active at publish time
  • Lender or program verification — for finance packets, the dealer fee, interest rate, and program terms have been confirmed against the lender’s published schedule
  • Confidence threshold — the record’s internal confidence score meets the minimum required for quote use
  • No unresolved requirements — any unresolved_requirements field on the record is empty or null
If any of these gates fail, the record is published with quote_safe: false. It remains in the dataset so your application can display it as reference context, but you must not route it into live quote math.

Provenance Fields on Quote-Safe Records

Quote-safe records always include a set of provenance fields that let you show your customers (and your own compliance team) where the data came from and when it was last confirmed.
The three provenance fields to surface in your application:
Display last_verified_at in your quote UI as a freshness indicator. For finance records, something like “Rate verified Jan 15, 2025” increases customer trust and gives your team a clear signal when to request a data refresh.

Context-Only Records (quote_safe: false)

Records with quote_safe: false are published to help you build richer interfaces — displaying program overviews, comparing incentive ranges, showing utility context, or populating compare views — without being safe to use in a binding quote. Common reasons a record carries quote_safe: false:
  • The source document is a secondary reference, not a primary program schedule
  • The effective dates are unknown or the record predates the last verification window
  • The lender or program has unresolved verification requirements
  • The confidence score falls below the packet’s threshold
  • The record is structural context (e.g., a climate zone or utility territory boundary) that has no direct dollar value
Do not use context-only records in live quote calculations. This includes monthly payment estimates, incentive dollar amounts, dealer fee inputs, and any number shown to a customer as a commitment. Context-only data is explicitly not a data-quality contract and may be outdated or approximate.

When to Use Context-Only Records

Context records are appropriate for:
  • Displaying program overviews, summaries, or “what is this product?” descriptions alongside a quote-safe payment row
  • Populating a Compare Hub view where the user is researching options, not finalizing a quote
  • Showing incentive program names and rough ranges before a customer enters specific equipment details
  • Climate and utility territory lookups that feed into software calculations (where your own calculation layer applies the final math)

The AHRI-Specific Quote-Safe Gate

AHRI matched-system records (hvac_ahri_matches) have an additional gate beyond the standard review process. Because AHRI certification data is licensed content, records in this packet are only eligible for quote_safe: true if your account holds an active AHRI data license entitlement. If your account does not carry the AHRI license, all hvac_ahri_matches records are served with quote_safe: false regardless of their verification status. You can still use them for system lookup, model matching, and SEER2/HSPF2 reference, but you may not route them into a customer quote as certified performance data.
Contact your account manager to add AHRI license entitlement to your plan. The license status is shown on the hvac_ahri_matches packet card in your Data Catalog.

Coverage Summary in Responses

Every response from a sync endpoint includes a coverage summary in the version object so you can monitor quote-safe health without counting records client-side.
The three coverage fields: You can calculate not_quote_safe as row_count - quote_safe_count. Your dashboard also surfaces this breakdown per packet on the workspace home screen.
A drop in quote_safe_count between versions is a signal to review the dataset release notes. It may indicate that a lender updated their program terms, causing previously verified records to require re-review.

Requesting Only Quote-Safe Records

The API and the SDK both support a quote_safe_only filter so you never accidentally load context records into a quoting context. Via API query parameter:
Via the TypeScript SDK:
The SDK’s filterQuoteSafe utility is also exported for cases where you cache the full snapshot and need to filter at read time:
For a full breakdown of which access level is required to receive quote-safe data in live applications, see API Access Levels.