Quickstart

To run ID Check a Verisoul API Key is required. Schedule a call here to get started.

Get Started

1. Fetch a session token by using your Verisoul API Key

curl --location 'https://api.prod.verisoul.ai/liveness/session?id=true' \
--header 'x-api-key: {VERISOUL_API_KEY}'

2. Navigate to ID Check in any browser and complete the session

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

3. Enroll the session by tying it to a unique account identifier

curl --location 'https://api.prod.verisoul.ai/liveness/enroll' \
--header 'Content-Type: application/json' \
--header 'x-api-key: {VERISOUL_API_KEY}' \
--data '{
    "session_id": "{VERISOUL_SESSION_ID}",
    "account_id": "id-check-quickstart-account"
}'

That's it! Now you can navigate to the ID Check dashboard to see a record of your session.

Last updated