> ## Documentation Index
> Fetch the complete documentation index at: https://docs.go.gbgplc.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Welcome to GBG GO

> Discover GBG GO, an identity verification platform with a no-code journey builder, investigation tools, analytics, and a library of verification modules.

export const VersionWarningBanner = () => {
  const [latestUrl, setLatestUrl] = useState(null);
  useEffect(() => {
    if (typeof window === "undefined") return;
    const {pathname, hash, search} = window.location;
    if (!pathname.includes("/go-v1/")) return;
    setLatestUrl(`${pathname.replace("/go-v1/", "/go-v2/")}${search}${hash}`);
  }, []);
  if (!latestUrl) return null;
  return <div className="not-prose my-6 rounded-xl border border-amber-500/30 bg-amber-500/10 px-4 py-3 text-sm text-gray-800 dark:text-gray-100">
      ⚠️ You are viewing the <strong>GBG GO v1</strong> documentation.
      <a href={latestUrl} className="ml-2 font-medium underline text-amber-700 dark:text-amber-400 hover:text-amber-800 dark:hover:text-amber-300">
        View the latest version (v2) →
      </a>
    </div>;
};

<VersionWarningBanner />

GBG GO is an identity verification platform that helps businesses verify customer identities, prevent fraud, and meet regulations. The platform includes a no-code/low-code canvas known as a <Tooltip tip="The interface in GBG GO where business users design and configure customer journeys by adding modules, setting routing conditions, and defining evaluation rules to create customized journeys.">journey builder</Tooltip> for designing <Tooltip tip="A defined workflow in GBG GO that guides users through verification processes, including identity checks and fraud detection.">customer journeys</Tooltip>. GBG GO also has a robust set of APIs and SDKs for smooth integration into your applications.

## Key features

This section explains the key features of GBG GO.

### Journey builder

Create customer journeys that define the steps and rules for processing verification journeys. These journeys consist of modules that handle specific tasks such as identity verification and fraud detection. You can also choose from a number of available <Tooltip tip="Pre-configured workflows designed for specific industries or use cases to help users quickly set up customer journeys.">journey templates</Tooltip> to help you get started quickly.

### Investigation

Review, monitor, and investigate customer identity verification journeys. Data submitted by your end users can be reviewed in the Investigation dashboard.

### Analytics

View performance insights for customer journeys. This feature tracks key metrics, including:

* Total number of journeys
* Journey sessions
* Completed sessions
* Completion rates
* Average processing time

### Modules

GBG GO provides a library of verification modules, including, but not limited to:

* Document and biometrics modules
* Data verification modules
* Compliance screening modules

### Routing and decision making

Routing controls how customers move through a journey based on conditions such as verification results, risk scores, or business rules, through the <Tooltip tip="A decision-making step in a journey where a customer is accepted, rejected, or flagged for manual review based on verification results.">evaluation</Tooltip> feature. It allows you to define alternative paths and ensure customers follow the correct process.

### API integration

GBG GO provides RESTful APIs that allow you to submit user data for processing and receive verification results. The platform supports:

* **Adaptive data collection**: This involves collecting data incrementally based on journey stage.
* **Non-adaptive data collection**: This involves gathering all required data upfront.

## Use cases

GBG GO adapts to different industry requirements and regulatory environments. The following examples demonstrate how businesses across three different industries use the platform.

### Online gaming platform

An online gaming platform must follow strict rules for age verification and identity checks. It also needs to offer a smooth onboarding experience for legitimate users.

When new users register:

* Low-risk users go through basic identity verification.
* Users from high-risk regions face additional verification steps.
* Users who fail initial checks are routed to manual review or rejected.
* Users who pass all verification steps are accepted.

### Financial services and FinTech

A cryptocurrency exchange needs to verify customer identities to comply with anti-money laundering (AML) regulations and prevent money laundering.

They configure a GBG GO journey to:

* Verify government-issued IDs.
* Perform biometric checks to ensure the person matches their documents.
* Screen against sanctions and PEP lists.

The system automatically approves low-risk customers while flagging or rejecting suspicious accounts.

### Healthcare and telehealth

A healthcare platform must verify patient identities to prevent insurance fraud and ensure accurate medical records.

They configure a GBG GO journey that includes:

* Document verification to confirm patient identity.
* Age verification for restricted services.
* Insurance eligibility checks.
* Biometric verification for sensitive medical information access.

The platform integrates the verification process into their patient onboarding experience using the GBG GO API. Different verification levels are applied based on the type of service requested, with more stringent checks for controlled substances.

## What’s next

Are you ready to get started with GBG GO? Take the next steps.

* [Platform quickstart](/docs/go-v1/get-started/quickstart/quickstartbusiness)
* [API-first integration quickstart](/docs/go-v1/get-started/quickstart/quickstartdev)
* [Create journeys](/docs/go-v1/platform/journey-builder/create-journey)
* [Start a journey ](/docs/go-v1/developer-integration/execute-customer-journeys/start-a-journey-step)
