> ## 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

> Protect your organization and your customers against identity theft and impersonation using AI-powered silent technology with the BioCatch 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 = ["BioCatch API v2.0"];

<VendorApiVersionTag versions={vendorApiVersions} />

The BioCatch Connector provides connectivity with [BioCatch](https://www.biocatch.com/), designed to fight scammers aiming to take over your customers' accounts.

### Key capabilities

<CardGroup cols={2}>
  <Card title="Real-time behavioral monitoring" icon="eye">
    Real-time capture and analysis of end user behavior (for example, browsing speed, left- or right-handed patterns, copy and paste) to detect pattern deviation from the usual session and to detect bots and RATs immediately.
  </Card>

  <Card title="Real-time network and device monitoring" icon="wifi">
    Real-time capture and analysis of end user network, VPN usage, location, device information, and any other information available to assess the reliability of the session.
  </Card>
</CardGroup>

***

## Supported operations

The BioCatch connector supports the following operations from the Grand Central Unified API:

| Operation                                  | Endpoint                                |
| :----------------------------------------- | :-------------------------------------- |
| Retrieve user activity analysis            | `POST {baseURL}/user-activity-analysis` |
| Provide feedback on user activity analysis | `POST {baseURL}/user-auth-result`       |

### Core use cases supported

<CardGroup cols={2}>
  <Card title="Secure payments activities" icon="credit-card" />

  <Card title="Identify and block account takeover" icon="user-ninja" />

  <Card title="Block bot attack" icon="robot" />
</CardGroup>

<Info>
  For information about the Grand Central Unified API endpoints that support these features, see [Reference](/connectors/fraud-detection/biocatch/reference).
</Info>
