Quickstart

See how ZeroKYC works by trying it yourself

To run the app a Verisoul API Key is required. Schedule a call here to get started.

Get Started

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

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

2. Navigate to ZeroKYC 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": "zerokyc-quickstart-account"
}'

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

Last updated