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

# CLEAR

> Verify identities using CLEAR, a biometric identity platform widely used in travel, hospitality, and financial services across North America.

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

A biometric identity platform streamlining identity verification for secure access and travel. It operates a leading reusable identity network in North America, with a strong presence in travel, hospitality, and financial services. To learn more, visit the [CLEAR website](https://www.clearme.com/).

## Adoption data

This section provides insights into the adoption of CLEAR among users in the United States.

|                 |                                                                                  |
| --------------- | -------------------------------------------------------------------------------- |
| Adoption        | 36 million                                                                       |
| Adoption source | [https://www.clearme.com/clear-verified](https://www.clearme.com/clear-verified) |
| Adoption rate   | 11.02%                                                                           |
| Coverage        | 299M                                                                             |
| Status          | <Badge color="gray">In Integration Pipeline</Badge>                              |

## Provider ID

This is the unique identifier for this digital ID provider in the GBG GO system.

|             |         |
| ----------- | ------- |
| Provider ID | `clear` |

## Compliance

This section outlines compliance and regulatory requirements for integrating this digital ID provider.

| Compliance data           | Status                                      |
| ------------------------- | ------------------------------------------- |
| Locality requirements     | <Badge color="green">None</Badge>           |
| Scheme-level restrictions | <Badge color="yellow">Adult content</Badge> |
| Certifications            | <Badge color="gray">IAL 2</Badge>           |

## Supported attributes

The following attributes are returned when CLEAR is used for identity verification:

### Always returned attributes

The following attributes are always returned from a successful verification from this ID Provider.

| Field                                                | Description                      |
| ---------------------------------------------------- | -------------------------------- |
| <Badge color="green">firstName</Badge>               | User’s first name                |
| <Badge color="gray">lastNames</Badge>                | User’s last name                 |
| <Badge color="yellow">dateOfBirth</Badge>            | User’s date of birth             |
| <Badge color="purple">type</Badge>                   | Type of identity document        |
| <Badge color="orange">number</Badge>                 | Identity document number         |
| <Badge color="green">document expirationDate</Badge> | Document expiration date         |
| <Badge color="gray">document issuingCountry</Badge>  | Country that issued the document |

### Sometimes returned attributes

The following attributes are sometimes returned from a successful verification from this ID Provider.

| Field                                                  | Description                                             |
| ------------------------------------------------------ | ------------------------------------------------------- |
| <Badge color="green">middleName</Badge>                | User’s middle name                                      |
| <Badge color="gray">nationality</Badge>                | User’s nationality                                      |
| <Badge color="yellow">sex</Badge>                      | User’s gender                                           |
| <Badge color="purple">line1</Badge>                    | Street address                                          |
| <Badge color="orange">line2</Badge>                    | Additional address information (e.g., apartment, suite) |
| <Badge color="green">city</Badge>                      | City of residence                                       |
| <Badge color="gray">subdivision</Badge>                | State, province, or region                              |
| <Badge color="yellow">postalCode</Badge>               | Postal or ZIP code                                      |
| <Badge color="purple">country</Badge>                  | Country of residence                                    |
| <Badge color="orange">attachments selfie</Badge>       | Selfie image provided by the user                       |
| <Badge color="green">attachments documentFront</Badge> | Front image of the identity document                    |
| <Badge color="gray">attachments documentBack</Badge>   | Back image of the identity document                     |
