> ## Documentation Index
> Fetch the complete documentation index at: https://agenticbanking.backbase.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Streamline identity verification and accelerate customer onboarding with the Prove Connector

export const VendorApiVersionTag = ({versions, label = "Supports"}) => {
  useEffect(() => {
    if (!versions || versions.length === 0) {
      return undefined;
    }
    const findAndSegmentStart = (reference, target) => {
      let i = 0;
      while (i < reference.length && i < target.length && reference[i] === target[i]) {
        i += 1;
      }
      let start = i;
      while (start > 0 && (/[0-9.vR]/).test(target[start - 1])) {
        start -= 1;
      }
      return start;
    };
    const formatText = () => {
      const suffix = " operations";
      if (versions.length === 1) {
        return `${label} ${versions[0]}${suffix}`;
      }
      const [first, ...rest] = versions;
      const last = rest[rest.length - 1];
      const andStart = findAndSegmentStart(first, last);
      const lead = first.slice(0, andStart);
      if (versions.length === 2) {
        return `${label} ${first} and ${last.slice(andStart)}${suffix}`;
      }
      const stems = versions.map(version => version.slice(andStart));
      return `${label} ${lead}${stems.slice(0, -1).join(", ")}, and ${stems[stems.length - 1]}${suffix}`;
    };
    const text = formatText();
    const mountCallout = () => {
      const titleRow = document.querySelector("#page-title")?.parentElement;
      if (!titleRow) {
        return null;
      }
      let callout = titleRow.querySelector("[data-vendor-api-version-callout='true']");
      if (!callout) {
        callout = document.createElement("div");
        callout.dataset.vendorApiVersionCallout = "true";
        callout.className = "vendor-api-version-callout vendor-api-version-callout--in-title";
        titleRow.appendChild(callout);
      }
      callout.replaceChildren();
      const textEl = document.createElement("span");
      textEl.className = "vendor-api-version-text";
      textEl.textContent = text;
      callout.appendChild(textEl);
      return callout;
    };
    let callout = mountCallout();
    if (callout) {
      return () => {
        callout?.remove();
      };
    }
    const observer = new MutationObserver(() => {
      callout = mountCallout();
      if (callout) {
        observer.disconnect();
      }
    });
    observer.observe(document.body, {
      childList: true,
      subtree: true
    });
    return () => {
      observer.disconnect();
      callout?.remove();
    };
  }, [versions, label]);
  return null;
};

export const vendorApiVersions = ["Prove API v2.0"];

<VendorApiVersionTag versions={vendorApiVersions} />

The Prove Connector provides connectivity with [Prove](https://www.entrust.com/products/identity-verification), designed to help you accelerate your lending and onboarding process by prefilling end user personal information. It only requires the user's phone number, or their SSN last 4 digits, or date of birth.

*This feature is only available in the United States.*

### Key capabilities

<CardGroup cols={3}>
  <Card title="Phone number ownership verification" icon="phone-xmark">
    Verify the trustworthiness of the phone number by checking length of number ownership, service provider reliability, and many other fraud indicators.
  </Card>

  <Card title="Personal information auto-fill" icon="wand-magic-sparkles">
    Speed up onboarding and lending by auto-filling end user data while limiting manual input.
  </Card>

  <Card title="Personal data verification" icon="user-check">
    Deliver a trust score for all data entered by the end user, so you can decide which data to trust.
  </Card>
</CardGroup>

***

## Supported operations

The Prove Connector supports the following operations from the Grand Central Unified API:

| Operation                                               | Endpoint                            |
| :------------------------------------------------------ | :---------------------------------- |
| Retrieve end user personal information                  | `POST /parties/search`              |
| Retrieve phone number trustworthiness                   | `POST /assessment-by-phone-address` |
| Retrieve trust score for personal information submitted | `POST /downloads/verify-id`         |

### Core use cases supported

<CardGroup cols={2}>
  <Card title="User onboarding" icon="circle-user-circle-check" />

  <Card title="User data update check" icon="user-check" />

  <Card title="Prevent fraudulent account opening" icon="user-ninja" />

  <Card title="Prevent account takeover" icon="user-ninja" />
</CardGroup>

<Info>
  For information about the Grand Central Unified API endpoints that support these features, see [Reference](connector/marketplace/connectors/kyc-kyb-connector/prove/reference).
</Info>

**Want to adopt the journey(s)?** Check out the [Onboarding Backbase Engagement Banking Platform journey](https://backbase.io/documentation/digital-onboarding/2025.10/onboarding-journeys-steps/us-autofill/us-autofill-journey-understand).
