# Address Confidence Scores

Ideon’s Address Confidence Scores provide a quantitative assessment of the accuracy of provider addresses. Developed through machine learning techniques and manually verified data, Ideon’s data model maintains scoring for 3 million unique individual providers. These scores are an important contextual datapoint that enables users to optimize integrations based on their unique user flows. Ideon's provider-network dataset leverages carrier provider directories as the source of truth; the confidence scores offer an additional analytical layer that evaluates the accuracy of the carrier directory address data.

The Address Confidence Scores assign a High, Medium, or Low score to each address, with over 19 million unique addresses scored. These categorizations reflect the likelihood that the provider is actually practicing at the given address. The below notes include an interpretation of the scores and corresponding test results against manually verified data.&#x20;

* High: the provider is very likely to be practicing at the address. In testing, over 85% of addresses were confirmed as valid.&#x20;
* Medium: a toss-up in terms of likelihood the provider sees patients at the address. In testing, roughly 50% of addresses were confirmed as valid.&#x20;
* Low: the provider is very likely to not be practicing at the address. In testing, over 93% of addresses were confirmed as invalid.&#x20;

{% hint style="info" %}
Important note: only providers with a type of "individual" are scored. Organization and hospital providers (including medical groups and facilities) are not scored for address confidence.
{% endhint %}

### Making Requests for Address Confidence Scores&#x20;

To retrieve address confidence scores, include the `address_confidence_score` field in the `premium_fields` array of your search request to the Provider Search endpoint ([API docs](https://docs.ideonapi.com/#providers-providers-post)). When requested, the `address_confidence_classification` will be included for each address in the `addresses` array for every provider. This enum provides the classifications *high*, *medium*, *low,* or *null*.

Access to address confidence scores requires appropriate API credentials and permissions. Please ensure your API key has been provisioned with access.

### Filtering by Address Confidence Scores in the Response&#x20;

For most member-driven provider search applications, we recommend dynamic filtering logic that acts on both the addresses returned for a provider and across providers returned for a search. While in many scenarios simply filtering out Low scored addresses can be effective, this can limit search results in rural regions and overly bias networks from health plans with more accurate directories.  &#x20;

Ideon’s recommended filtering can be implemented in two ways: on the provider level, based on the number and distribution of addresses returned for each provider, and on the search level, based on the matching providers and distributions.  &#x20;

* Provider Level — for each provider returned in a search: &#x20;
  * If there are addresses scored as each of High, Medium, and Low OR each of Medium and Low, filter out the Lows. &#x20;
  * If all addresses are scored Low, leave them. &#x20;
  * Sort addresses displayed by Address Confidence Scores, with High-scoring addresses first. &#x20;
* Search Level – across all providers returned in a search: &#x20;
  * If there are enough providers with addresses scored as High to satisfy criteria for volume for selection, filter out providers with only Medium or Low addresses. &#x20;
  * If there are not enough providers with addresses scored as High, show remaining providers as needed. &#x20;
  * Sort providers displayed by Address Confidence Scores or include it as a factor in your sorting algorithm. &#x20;

An important thing to note is that not all provider addresses are scored (returned as *null*). Typically, this happens in scenarios in which data for that specific provider (as defined by NPI) is received from one and only one source. The recommended action is to treat these scenarios similar to Medium-scored addresses. &#x20;

We also recommend considering a warning flag or notification for end users when displaying Medium and Low addresses. This can be an effective way to communicate that the provider may not be seeing patients at the address, despite the health plan directory reporting it as in-network.  &#x20;

 &#x20;


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ideonapi.gitbook.io/quote-and-select/provider-network-directory-search/address-confidence-scores.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
