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

# Quickstart

> Get started with Verisoul Face Match verification

This guide will help you quickly implement Face Match verification in your application. The entire process takes just a few minutes to set up.

<Note>
  To run the app a Verisoul API Key is required. <a href="https://meetings.hubspot.com/henry-legard" target="_blank">Schedule a call</a> to get started.
</Note>

## Get Started

<Steps>
  <Step title="Fetch a Face Match session">
    Use your Verisoul API Key to create a new Face Match session:

    ```bash theme={null}
    curl --location 'https://api.sandbox.verisoul.ai/liveness/session' \
    --header 'x-api-key: {VERISOUL_API_KEY}'
    ```

    <Tip>
      This will return a `session_id` that you'll need for the next steps.
    </Tip>
  </Step>

  <Step title="Navigate to Face Match">
    Direct your user to the Face Match verification page in any browser:

    ```
    https://app.sandbox.verisoul.ai?session_id={VERISOUL_SESSION_ID}
    ```

    <div className="mt-4">
      <p>The user will complete a quick verification process that includes taking a selfie video and completing liveness checks.</p>
    </div>
  </Step>

  <Step title="Use Verisoul API to Enroll the session">
    Tie the completed session to a unique account identifier:

    ```bash theme={null}
    curl --location 'https://api.sandbox.verisoul.ai/liveness/enroll' \
    --header 'Content-Type: application/json' \
    --header 'x-api-key: {VERISOUL_API_KEY}' \
    --data '{
        "session_id": "{VERISOUL_SESSION_ID}",
        "account_id": "facematch-quickstart-account"
    }'
    ```

    <Note>
      Replace `facematch-quickstart-account` with your actual user's unique identifier.
    </Note>
  </Step>
</Steps>

## That's it!

Now you can navigate to the [Face Match dashboard](https://dashboard.verisoul.ai) to see a record of your session.

### Alternative Testing Option

If you prefer to quickly test Face Match with some users, we offer a Public Redirect endpoint that doesn't require a full integration.

This endpoint provides a *public* URL that you can share with test users. Please note that this is not the recommended integration method and is intended only for temporary testing purposes. Since the redirect link is completely public, users can share it with others, which may lead to increased costs.

For more details on this endpoint, see our [API Reference](/api-reference/face-match/public-redirect).

## Next Steps

<CardGroup cols={2}>
  <Card title="Integration Guide" icon="code" iconType="duotone" href="/verifications/face-match/integration">
    Detailed instructions for integrating Face Match into your application
  </Card>

  <Card title="API Reference" icon="server" iconType="duotone" href="/api-reference/face-match/session">
    Complete API documentation for Face Match endpoints
  </Card>
</CardGroup>
